wok-next view libee/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d6378d455338
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libee"
4 VERSION="0.3.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="An Event Expression Library inspired by CEE"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.libee.org/download/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.libee.org/files/download/$TARBALL"
14 BUILD_DEPENDS="libestr-dev automake"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --disable-testbench \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make -j1 &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libee)
29 copy @std
30 DEPENDS="libestr"
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 }