wok view libev/receipt @ rev 11789

fixed typo
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Feb 24 12:06:26 2012 -0800 (2012-02-24)
parents 7fc0522b33cd
children 6c3718ca17b6
line source
1 # SliTaz package receipt.
3 PACKAGE="libev"
4 VERSION="4.04"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://software.schmorp.de/pkg/libev.html"
10 WGET_URL="http://dist.schmorp.de/libev/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure $CONFIGURE_ARGS &&
17 make && make install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
25 }