wok-6.x view libevent/receipt @ rev 7154

Fixed virtualbox-ose to depend -a when installed. Also fixed 60-vboxguest.rules to not error if 'tazpkg reconfigure udev' is done.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 06 19:43:56 2010 +0000 (2010-11-06)
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 }