wok-next annotate libedit/receipt @ rev 21722

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