wok diff enet/receipt @ rev 12960

lostirc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 31 20:20:10 2012 +0200 (2012-05-31)
parents
children fcdd50638150
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/enet/receipt	Thu May 31 20:20:10 2012 +0200
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="enet"
     1.7 +VERSION="1.2.1"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="relatively thin, simple and robust network communication layer on top of UDP"
    1.10 +MAINTAINER="devl547@gmail.com"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://enet.bespin.org/"
    1.13 +WGET_URL="$WEB_SITE/download/$TARBALL"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	cd $src
    1.19 +	./configure --prefix=/usr --infodir=/usr/share/info \
    1.20 +	--mandir=/usr/share/man --enable-crc32 $CONFIGURE_ARGS &&
    1.21 +	make &&
    1.22 +	make DESTDIR=$PWD/_pkg install
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/lib
    1.29 +	cp -a $_pkg/usr/lib/*a $fs/usr/lib
    1.30 +	cp -a $_pkg/usr/include $fs/usr
    1.31 +}