wok annotate libev/receipt @ rev 16434

Merge branches
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 18 13:51:05 2014 +0300 (2014-04-18)
parents 4767baeab250
children dd38b4c08c8d
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"
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"
mallory@2683 12
mallory@2683 13 # Rules to configure and make the package.
mallory@2683 14 compile_rules()
mallory@2683 15 {
mallory@2683 16 cd $src
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