wok annotate libee/receipt @ rev 13744
Add get-bitcoin
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 29 14:42:05 2012 +0100 (2012-12-29) |
parents | 0ef9618e4ad5 |
children | 394ef0611eb5 |
rev | line source |
---|---|
erjo@11414 | 1 # SliTaz package receipt. |
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" |
erjo@11414 | 8 WEB_SITE="http://www.libee.org/download/" |
erjo@11414 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@11414 | 10 WGET_URL="http://www.libee.org/files/download/$TARBALL" |
erjo@11414 | 11 |
erjo@11414 | 12 DEPENDS="libestr" |
erjo@11414 | 13 BUILD_DEPENDS="libestr-dev" |
erjo@11414 | 14 |
erjo@11414 | 15 # Rules to configure and make the package. |
erjo@11414 | 16 compile_rules() |
erjo@11414 | 17 { |
slaxemulator@11422 | 18 cd $src |
erjo@11414 | 19 # Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600 |
erjo@11414 | 20 patch -p 1 < $stuff/libee-build-fix.patch |
erjo@11414 | 21 ./configure $CONFIGURE_ARGS \ |
erjo@11414 | 22 --disable-testbench && make && make install |
erjo@11414 | 23 } |
erjo@11414 | 24 |
erjo@11414 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@11414 | 26 genpkg_rules() |
erjo@11414 | 27 { |
erjo@11414 | 28 mkdir -p $fs/usr/lib |
erjo@11414 | 29 |
erjo@11414 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
erjo@11414 | 31 cp -a $install/usr/sbin $fs/usr |
erjo@11414 | 32 } |