wok view libtirpc/receipt @ rev 15857

Up: audacious to 3.4.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 29 20:09:33 2014 +0000 (2014-01-29)
parents f2b2d2f2961b
children ac2ee8823dfa
line source
1 # SliTaz package receipt.
3 PACKAGE="libtirpc"
4 VERSION="0.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Transport-Independent RPC library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libtirpc.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
30 cp -a $install/etc $fs
31 }