wok view libevent/receipt @ rev 2339

gpxe-pxe: url redondancy setup
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 02 08:57:35 2009 +0000 (2009-03-02)
parents
children 3eb762d7edb9
line source
1 # SliTaz package receipt.
3 PACKAGE="libevent"
4 VERSION="1.4.3"
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 }