wok view readline/receipt @ rev 16341

Add slitaz-arm-rpi (only for ARM arch, hope i486 cooker will handle it)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 14:59:28 2014 +0200 (2014-04-12)
parents 802ff9337f50
children 2507157b054d
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 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
15 BUILD_DEPENDS="ncursesw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 sed -i '/(MV)/d' Makefile*
22 ./configure $CONFIGURE_ARGS &&
23 make && 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 $install/usr/lib/*.so* $fs/usr/lib
31 }