# HG changeset patch # User Samuel Trassare # Date 1362155836 28800 # Node ID 6abfd52845854dc1c40dc29523945a03a3e8017f # Parent d23ba35ad58b870a7b823d3d8d5ec0aca60d7dbb libmnl*: add 1.0.3 diff -r d23ba35ad58b -r 6abfd5284585 libmnl-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmnl-dev/receipt Fri Mar 01 08:37:16 2013 -0800 @@ -0,0 +1,19 @@ +# Slitaz package receipt. + +PACKAGE="libmnl-dev" +VERSION="1.0.3" +CATEGORY="networking" +SHORT_DESC="A minimalistic user-space library oriented to Netlink developers." +MAINTAINER="samuel_trassare@yahoo.com" +LICENSE="GNU GPLv2" +WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/index.html" +WANTED="libmnl" +DEPENDS="libmnl" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -ar $install/usr/include $fs/usr + cp -ar $install/usr/lib/pkgconfig $fs/usr/lib/ +} diff -r d23ba35ad58b -r 6abfd5284585 libmnl/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmnl/description.txt Fri Mar 01 08:37:16 2013 -0800 @@ -0,0 +1,5 @@ +libmnl is a minimalistic user-space library oriented to Netlink developers. +There are a lot of common tasks in parsing, validating, constructing of both the +Netlink header and TLVs that are repetitive and easy to get wrong. This library +aims to provide simple helpers that allows you to re-use code and to avoid +re-inventing the wheel. diff -r d23ba35ad58b -r 6abfd5284585 libmnl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmnl/receipt Fri Mar 01 08:37:16 2013 -0800 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="libmnl" +VERSION="1.0.3" +CATEGORY="networking" +SHORT_DESC="A minimalistic user-space library oriented to Netlink developers." +MAINTAINER="samuel_trassare@yahoo.com" +LICENSE="GNU GPLv2" +WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/index.html" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="http://www.netfilter.org/projects/$PACKAGE/files/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/lib* $fs/usr/lib/ +}