wok-stable annotate libev/receipt @ rev 11352
busybox/httpd: add support for system passwords
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Nov 29 18:11:22 2011 +0100 (2011-11-29) |
parents | 7fc0522b33cd |
children |
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" |
mallory@2683 | 6 SHORT_DESC="A full-featured and high-performance (see benchmark) event loop that is loosely modelled after libevent, but without its limitations and bugs." |
mallory@2683 | 7 MAINTAINER="mallory@sweetpeople.org" |
mallory@2683 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@2683 | 9 WEB_SITE="http://software.schmorp.de/pkg/libev.html" |
mallory@2683 | 10 WGET_URL="http://dist.schmorp.de/libev/$TARBALL" |
mallory@2683 | 11 |
mallory@2683 | 12 # Rules to configure and make the package. |
mallory@2683 | 13 compile_rules() |
mallory@2683 | 14 { |
mallory@2683 | 15 cd $src |
slaxemulator@10206 | 16 ./configure $CONFIGURE_ARGS && |
slaxemulator@10206 | 17 make && make install |
mallory@2683 | 18 } |
mallory@2683 | 19 |
mallory@2683 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2683 | 21 genpkg_rules() |
mallory@2683 | 22 { |
slaxemulator@10206 | 23 mkdir -p $fs/usr/lib |
mallory@2683 | 24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
mallory@2683 | 25 } |
mallory@2683 | 26 |