wok view libevent/receipt @ rev 13295

Add libQtDeclarative
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 28 13:39:20 2012 +0200 (2012-08-28)
parents 749bcc79525b
children 6c3718ca17b6
line source
1 # SliTaz package receipt.
3 PACKAGE="libevent"
4 VERSION="2.0.17"
5 CATEGORY="system-tools"
6 SHORT_DESC="An event notification library."
7 MAINTAINER="0dddba11@googlemail.com"
8 TARBALL="$PACKAGE-$VERSION-stable.tar.gz"
9 WEB_SITE="http://libevent.org"
10 WGET_URL="https://github.com/downloads/$PACKAGE/$PACKAGE/$TARBALL"
12 DEPENDS="openssl"
13 BUILD_DEPENDS="openssl-dev wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 $CONFIGURE_ARGS &&
21 make && make 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 $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }