wok view libevent/receipt @ rev 8161

imported patch commit_inprogress/flex.patch
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 27 00:20:49 2011 +0100 (2011-01-27)
parents 22476fcc0861
children 409f65125bed
line source
1 # SliTaz package receipt.
3 PACKAGE="libevent"
4 VERSION="1.4.14b"
5 CATEGORY="system-tools"
6 SHORT_DESC="An event notification library."
7 MAINTAINER="0dddba11@googlemail.com"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION-stable.tar.gz"
10 WEB_SITE="http://www.monkey.org/~provos/libevent/"
11 WGET_URL="http://www.monkey.org/~provos/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mv $PACKAGE-$VERSION-stable $PACKAGE-$VERSION
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }