wok rev 301
Add: pwlib pwlib-dev
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 29 22:38:17 2008 +0000 (2008-02-29) |
parents | 86bae51bfbb0 |
children | 56f1f344bc39 |
files | pwlib-dev/receipt pwlib/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/pwlib-dev/receipt Fri Feb 29 22:38:17 2008 +0000 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="pwlib-dev" 1.7 +VERSION="1.10.10" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Portable Windows Libary devel files." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +WANTED="pwlib" 1.12 +WEB_SITE="http://www.ekiga.org/" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + mkdir $fs/usr 1.18 + cp -a $_pkg/usr/include $fs/usr 1.19 + cp -a $_pkg/usr/share $fs/usr 1.20 +} 1.21 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/pwlib/receipt Fri Feb 29 22:38:17 2008 +0000 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="pwlib" 2.7 +VERSION="1.10.10" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Portable Windows Libary." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.12 +WEB_SITE="http://www.ekiga.org/" 2.13 +WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL" 2.14 +BUILD_DEPENDS="flex bison m4" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + cd $src 2.20 + ./configure --prefix=/usr --bindir=/bin \ 2.21 + --libexecdir=/usr/bin --mandir=/usr/share/man \ 2.22 + $CONFIGURE_ARGS 2.23 + make 2.24 + make DESTDIR=$PWD/_pkg install 2.25 +} 2.26 + 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/lib $fs/usr/bin 2.32 + cp -a $_pkg/usr/bin $fs/usr 2.33 + cp -a $_pkg/usr/lib $fs/usr 2.34 +} 2.35 +