wok annotate libev/receipt @ rev 6517

Up: mpfr, mpfr-dev to 3.0.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 02 14:39:44 2010 +0000 (2010-10-02)
parents 637e958c066c
children 4767baeab250
rev   line source
mallory@2683 1 # SliTaz package receipt.
mallory@2683 2
mallory@2683 3 PACKAGE="libev"
slaxemulator@6355 4 VERSION="3.9"
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 DEPENDS=""
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
mallory@2683 17 ./configure \
mallory@2683 18 --prefix=/usr \
mallory@2683 19 --infodir=/usr/share/info \
mallory@2683 20 --mandir=/usr/share/man \
mallory@2683 21 $CONFIGURE_ARGS &&
mallory@2683 22 make && make DESTDIR=$PWD/_pkg install
mallory@2683 23 }
mallory@2683 24
mallory@2683 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2683 26 genpkg_rules()
mallory@2683 27 {
mallory@2683 28 mkdir -p $fs/usr/lib
mallory@2683 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
mallory@2683 30 }
mallory@2683 31