blob: ecdb9080e2b492d4172a91423d9f348055992c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=pkgconf
pkgver=0.1.1
pkgrel=2
pkgdesc="development framework configuration tools"
url="http://www.atheme.org/"
arch="all"
license="ISC"
depends=""
depends_dev="popt-dev"
makedepends="$depends_dev"
install=""
replaces="pkgconfig"
source="http://tortois.es/~nenolod/distfiles/pkgconf-$pkgver.tar.bz2"
_builddir="$srcdir"/pkgconf-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir"/usr/bin
make DESTDIR="$pkgdir" install || return 1
# 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"
|