wok-6.x view readline/receipt @ rev 23398
updated perl-test-mockobject (1.20180705 -> 1.20200122)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 31 17:30:03 2020 +0100 (2020-03-31) |
parents | 6135577f4d08 |
children | 3e9a9990c985 |
line source
1 # SliTaz package receipt.
3 PACKAGE="readline"
4 VERSION="8.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU readline."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/readline/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="ncursesw-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 case "$ARCH" in
23 arm*) export bash_cv_wcwidth_broken=true ;;
24 esac
26 # patch -Np1 -i $stuff/readline-6.3-upstream_fixes-3.patch
27 sed -i '/(MV)/d' Makefile*
29 ./configure --disable-install-examples $CONFIGURE_ARGS &&
30 make -j 1 &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }