wok-6.x annotate libev/receipt @ rev 17358
Add asterisk-speech-recog
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 18 21:43:05 2014 +0100 (2014-11-18) |
parents | 6c3718ca17b6 |
children | e7c3016b3a7d |
rev | line source |
---|---|
mallory@2683 | 1 # SliTaz package receipt. |
mallory@2683 | 2 |
mallory@2683 | 3 PACKAGE="libev" |
slaxemulator@10206 | 4 VERSION="4.04" |
mallory@2683 | 5 CATEGORY="system-tools" |
pankso@16441 | 6 SHORT_DESC="A full-featured and high-performance event loop." |
mallory@2683 | 7 MAINTAINER="mallory@sweetpeople.org" |
pascal@15472 | 8 LICENSE="BSD" |
mallory@2683 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@2683 | 10 WEB_SITE="http://software.schmorp.de/pkg/libev.html" |
mallory@2683 | 11 WGET_URL="http://dist.schmorp.de/libev/$TARBALL" |
pankso@16441 | 12 HOST_ARCH="i486 arm" |
mallory@2683 | 13 |
mallory@2683 | 14 # Rules to configure and make the package. |
mallory@2683 | 15 compile_rules() |
mallory@2683 | 16 { |
slaxemulator@10206 | 17 ./configure $CONFIGURE_ARGS && |
slaxemulator@10206 | 18 make && make install |
mallory@2683 | 19 } |
mallory@2683 | 20 |
mallory@2683 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2683 | 22 genpkg_rules() |
mallory@2683 | 23 { |
slaxemulator@10206 | 24 mkdir -p $fs/usr/lib |
pascal@15472 | 25 cp -a $install/usr/lib/*.so* $fs/usr/lib |
mallory@2683 | 26 } |
mallory@2683 | 27 |