wok view readline/receipt @ rev 9044

atm-tools: need make -j1
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 08:49:41 2011 +0100 (2011-03-04)
parents 56f227054f39
children 55a190b3e32d
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 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure &&
19 make &&
21 # readline make install ignore DESTDIR environnment variable.
22 make DESTDIR=$DESTDIR 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 }