wok view readline/receipt @ rev 10643

icedtea6-jdk: fix comment
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 02:01:10 2011 +0200 (2011-05-27)
parents 5740040c75b8
children 833b46d85d4d
line source
1 # SliTaz package receipt.
3 PACKAGE="readline"
4 VERSION="6.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU readline."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="ncurses"
13 BUILD_DEPENDS="ncurses-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make &&
22 # readline make install ignore DESTDIR environnment variable.
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }