wok view libnl/receipt @ rev 4282

cdrdao: fix build with gcc-4.x
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 10:31:52 2009 +0200 (2009-09-26)
parents 7d6929ba1a74
children 1324125747ab
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 busybox patch -p0 -i stuff/libnl-1.1-ULONG_MAX.patch [[ exit 1
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 }