wok view libev/receipt @ rev 7227

Up: attica to 0.2.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Nov 11 22:08:32 2010 +0000 (2010-11-11)
parents 637e958c066c
children 4767baeab250
line source
1 # SliTaz package receipt.
3 PACKAGE="libev"
4 VERSION="3.9"
5 CATEGORY="system-tools"
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."
7 MAINTAINER="mallory@sweetpeople.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://software.schmorp.de/pkg/libev.html"
11 WGET_URL="http://dist.schmorp.de/libev/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }