wok view libee/receipt @ rev 21802

linld/iso2exe: remove non slitaz dos boot (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 18:59:42 2019 +0200 (2019-08-10)
parents c5285953bed2
children 535c806240cc
line source
1 # SliTaz package receipt.
3 PACKAGE="libee"
4 VERSION="0.3.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="An Event Expression Library inspired by CEE"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://web.archive.org/web/20181206220018/http://www.libee.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://www.libee.org/files/download/$TARBALL"
13 DEPENDS="libestr"
14 BUILD_DEPENDS="libestr-dev automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 # Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600
21 patch -p 1 < $stuff/libee-build-fix.patch
22 ./configure $CONFIGURE_ARGS \
23 --disable-testbench && make -j 1 && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 cp -a $install/usr/sbin $fs/usr
33 }