wok view libtirpc/receipt @ rev 16061

ARM: add libtool and xorg-xkbcomp
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 12 01:19:59 2014 +0100 (2014-03-12)
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 }