wok view libproxy/receipt @ rev 2940

Up: libgcrypt-* (1.4.4)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 08 00:13:03 2009 +0200 (2009-05-08)
parents 583bdd691510
children 255a25f55b78
line source
1 # SliTaz package receipt.
3 PACKAGE="libproxy"
4 VERSION="0.2.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="library to provide automatic proxy configuration management"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="glib gtk+"
9 BUILD_DEPENDS="glibc-base"
10 SUGGESTED="python icu libcurl libxslt webkit-r"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://libproxy.googlecode.com"
13 WGET_URL="$WEB_SITE/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
32 cp -a $_pkg/usr/lib/python* $fs/usr/lib
35 }