wok-next view libee/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 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 }