wok view pwlib/receipt @ rev 1243

Up: bogofilter 1.1.6 to 1.1.7
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Aug 12 00:00:05 2008 +0200 (2008-08-12)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pwlib"
4 VERSION="1.10.10"
5 CATEGORY="network"
6 SHORT_DESC="Portable Windows Libary."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.ekiga.org/"
10 WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL"
11 BUILD_DEPENDS="flex bison m4"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --bindir=/bin \
18 --libexecdir=/usr/bin --mandir=/usr/share/man \
19 $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/bin
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 }