wok-6.x view libnl/receipt @ rev 9674
Fixed python-pyxml. The sed way had a error unmatch /. So i'm using the real patch from archlinux.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue May 03 04:53:22 2011 +0000 (2011-05-03) |
parents | 1324125747ab |
children | 48a70b47742a |
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 || return 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 }