2010-06-15 20:02:04 +02:00
|
|
|
# Description: Transport Independent RPC library
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# URL: http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php
|
|
|
|
|
|
|
|
name=libtirpc
|
2011-05-03 13:25:41 +02:00
|
|
|
version=0.2.2
|
2012-01-05 12:23:58 +01:00
|
|
|
release=3
|
2010-11-12 13:57:28 +01:00
|
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2)
|
2010-06-15 20:02:04 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2011-05-18 09:50:48 +02:00
|
|
|
|
|
|
|
# revert
|
|
|
|
# http://git.infradead.org/users/steved/libtirpc.git/patch/9bdcba10aa67ce3f67810c7aaac944a00dcfcee5
|
|
|
|
# because it breaks linking of other applications against libtirpc
|
|
|
|
sed -i 's/des_crypt\.c//' src/Makefile.am
|
2012-01-05 12:23:58 +01:00
|
|
|
aclocal
|
2011-05-18 09:50:48 +02:00
|
|
|
automake
|
|
|
|
|
2010-06-15 20:02:04 +02:00
|
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|