wok view libevent/receipt @ rev 18585

Up privoxy (3.0.23-stable)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 12 19:07:07 2015 +0100 (2015-11-12)
parents c5d0d245189b
children aadac27b6d69
line source
1 # SliTaz package receipt.
3 PACKAGE="libevent"
4 VERSION="2.0.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="An event notification library."
7 MAINTAINER="0dddba11@googlemail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION-stable.tar.gz"
10 WEB_SITE="http://libevent.org"
11 WGET_URL="http://downloads.sourceforge.net/levent/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="openssl"
15 BUILD_DEPENDS="openssl-dev wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }