wok view libnl/receipt @ rev 1769

Add get-upx
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 26 11:51:02 2008 +0000 (2008-11-26)
parents
children 8eed0ac6ee3e
line source
1 # SliTaz package receipt.
3 PACKAGE="libnl"
4 VERSION="1.1"
5 CATEGORY="network"
6 SHORT_DESC="netlink library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://people.suug.ch/~tgr/libnl"
10 WGET_URL="$WEB_SITE/files/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 }