wok-next view libedit/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents 0ec6086e21d6
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libedit"
4 VERSION="3.0"
5 CATEGORY="misc"
6 SHORT_DESC="Berkeley-style licensed command line editor library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://thrysoee.dk/editline/"
11 TARBALL="libedit-20100424-$VERSION.tar.gz"
12 WGET_URL="http://www.thrysoee.dk/editline/$TARBALL"
14 BUILD_DEPENDS="gettext-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --enable-widec \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libedit)
29 copy @std
30 TAGS="cli editor library"
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 }