main/pkgconf: delete the pkg-config symlink

We do not want completely replace pkg-config til we are more or less sure
that all package can build with it.

For now, to test pkgconf we should use:

 export PKG_CONFIG=pkgconf

and this could even be done from /etc/abuild.conf.
This commit is contained in:
Natanael Copa 2011-07-27 11:24:10 +00:00
parent ea4043fbfa
commit 13b2d83cf8

View File

@ -2,7 +2,7 @@
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=pkgconf
pkgver=0.1.1
pkgrel=1
pkgrel=2
pkgdesc="development framework configuration tools"
url="http://www.atheme.org/"
arch="all"
@ -40,7 +40,9 @@ package() {
cd "$_builddir"
mkdir -p "$pkgdir"/usr/bin
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
# we remove the pkg-config symlink since it breaks the build boxes
rm -f "$pkgdir"/usr/lib/*.la \
"$pkgdir"/usr/bin/pkg-config
}
md5sums="87fe4e0128fbf0b9f9a393df37895052 pkgconf-0.1.1.tar.bz2"