wok view popt/receipt @ rev 4675

Up: python-jinja2 (2.2.1)
author Claudinei Pereira <claudinei@slitaz.org>
date Tue Dec 29 18:41:26 2009 +0000 (2009-12-29)
parents cf22fee17710
children 98cbcc757c0e
line source
1 # SliTaz package receipt.
3 PACKAGE="popt"
4 VERSION="1.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for parsing command line options."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://rpm5.org/"
10 WGET_URL="http://freshmeat.net/redir/popt/72854/url_tgz/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }