blob: 612c90764b308006551d9c9b88a8f13aa2e78061 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Johannes Löthberg <johannes@kyriasis.com>
# Contributor: Piotr Gorski <lucjan.lucjanov@gmail.com>
# Contributor: Lucy <lucy@luz.lu>
# Contributor: Bartlomiej Piotrowski <nospam@bpiotrowski.pl>
pkgname=pkgconf
pkgver=1.5.3
pkgrel=1
pkgdesc="Package compiler and linker metadata toolkit"
url="https://git.dereferenced.org/pkgconf/pkgconf"
license=(custom:ISC)
arch=('x86_64' 'ppc64le')
depends=(glibc sh)
makedepends=(git)
provides=(pkg-config pkgconfig)
conflicts=(pkg-config)
replaces=(pkg-config)
groups=(base-devel)
_commit=101b99b5b59d58fe6c6dc46ae22edb049cc0bd3a # tags/pkgconf-1.5.3
source=("git+$url#commit=$_commit" platform-pkg-config.in)
sha256sums=('SKIP'
'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
_libdir=/usr/lib
_includedir=/usr/include
pkgver() {
cd $pkgname
git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
}
prepare() {
mkdir build
cd $pkgname
./autogen.sh
}
build() {
cd build
../$pkgname/configure \
--prefix=/usr \
--sysconfdir=/etc \
--with-pkg-config-dir="$_pcdirs" \
--with-system-libdir="$_libdir" \
--with-system-includedir="$_includedir" \
--disable-static
make
}
package() {
DESTDIR="$pkgdir" make -C build install
# From https://src.fedoraproject.org/rpms/pkgconf/
sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
-e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
-e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
platform-pkg-config.in |
install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
# Multilib
if [[ $CARCH = x86_64 ]]; then
_host32=${CHOST/x86_64/i686}
sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
platform-pkg-config.in |
install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
fi
ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
}
# vim:set sw=2 et:
|