wok view libee/receipt @ rev 17450
syslinux/iso2exe: fix kernel_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Dec 16 18:59:28 2014 +0100 (2014-12-16) |
parents | 6c3718ca17b6 |
children | e66efc062996 |
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="http://www.libee.org/download/"
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 }