wok-next annotate libee/receipt @ rev 20649

grub2-efi: remove duplicate modules (thanks alanyih)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 04 10:48:37 2018 +0200 (2018-05-04)
parents 9e5dca6702bf
children d6378d455338
rev   line source
al@20463 1 # SliTaz package receipt v2.
erjo@11414 2
erjo@11414 3 PACKAGE="libee"
erjo@11414 4 VERSION="0.3.2"
erjo@11414 5 CATEGORY="system-tools"
erjo@11414 6 SHORT_DESC="An Event Expression Library inspired by CEE"
erjo@11414 7 MAINTAINER="erjo@slitaz.org"
pascal@15472 8 LICENSE="LGPL2.1"
erjo@11414 9 WEB_SITE="http://www.libee.org/download/"
al@20463 10
erjo@11414 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11414 12 WGET_URL="http://www.libee.org/files/download/$TARBALL"
erjo@11414 13
pascal@15117 14 BUILD_DEPENDS="libestr-dev automake"
al@20463 15 SPLIT="libee-dev"
erjo@11414 16
al@20463 17 compile_rules() {
erjo@11414 18 # Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600
erjo@11414 19 patch -p 1 < $stuff/libee-build-fix.patch
al@20575 20
al@20463 21 ./configure \
al@20463 22 --disable-testbench \
al@20463 23 $CONFIGURE_ARGS &&
al@20575 24 fix libtool &&
al@20575 25 make -j1 &&
al@20557 26 make install
erjo@11414 27 }
erjo@11414 28
al@20463 29 genpkg_rules() {
al@20463 30 case $PACKAGE in
al@20463 31 libee)
al@20557 32 copy @std
al@20463 33 DEPENDS="libestr"
al@20463 34 ;;
al@20463 35 *-dev)
al@20557 36 copy @dev
al@20463 37 ;;
al@20463 38 esac
erjo@11414 39 }