mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 11:51:38 +01:00
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=portablexdr
|
|
pkgver=4.9.1
|
|
pkgrel=1
|
|
pkgdesc="external data representation (XDR) library"
|
|
url="http://people.redhat.com/~rjones/portablexdr/"
|
|
arch="all"
|
|
license="GPLv2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="$depends_dev libtool"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-rpcgen"
|
|
source="http://people.redhat.com/~rjones/portablexdr/files/portablexdr-$pkgver.tar.gz
|
|
portablexdr-4.9.1-no-config-h.patch
|
|
portablexdr-build-use-intptr_t-and-uintptr_t-to-cast-ptr-to-int.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/portablexdr-$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
|
|
|
|
# rename byteswap.h so it does not gets pulled in by uclibc headers
|
|
mv byteswap.h _byteswap.h
|
|
sed -i -e 's/byteswap\.h/_byteswap.h/g' \
|
|
Makefile.in *.c
|
|
}
|
|
|
|
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"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
ln -s portable-rpcgen "$pkgdir"/usr/bin/rpcgen
|
|
}
|
|
|
|
rpcgen() {
|
|
pkgdesc="Portable rpcgen"
|
|
mkdir -p "$subpkgdir"/usr
|
|
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
|
|
}
|
|
|
|
md5sums="949e6dc9815590e5688f18bfdd2a98f9 portablexdr-4.9.1.tar.gz
|
|
e5e44853226f8e756aa499299404d505 portablexdr-4.9.1-no-config-h.patch
|
|
6d8528d20edd2db618fad96f2afcd926 portablexdr-build-use-intptr_t-and-uintptr_t-to-cast-ptr-to-int.patch"
|