Added libproxy-0.2.3 template.

--HG--
extra : convert_revision : 643d4bb241703a04c2fa64e4e22ac86bd216b312
This commit is contained in:
Juan RP 2009-05-14 15:26:30 +02:00
parent 2027d5d5f5
commit 06e0809c88
6 changed files with 64 additions and 0 deletions

1
templates/libproxy-devel Symbolic link
View File

@ -0,0 +1 @@
libproxy

1
templates/libproxy-python Symbolic link
View File

@ -0,0 +1 @@
libproxy

View File

@ -0,0 +1,2 @@
abi_depends=0.2.3
api_depends=${abi_depends}

View File

@ -0,0 +1,17 @@
# Template file for 'libproxy-devel'.
#
short_desc="${sourcepkg} development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run libproxy
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/lib*.so ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
}

View File

@ -0,0 +1,15 @@
# Template file for 'libproxy-python'.
#
short_desc="${sourcepkg} python bindings"
long_desc="${long_desc}
This package contains the python bindings."
Add_dependency run libproxy
Add_dependency run python
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/python* ${DESTDIR}/usr/lib
}

View File

@ -0,0 +1,28 @@
# Template file for 'libproxy'
pkgname=libproxy
sourcepkg=$pkgname
version=0.2.3
distfiles="http://libproxy.googlecode.com/files/$pkgname-$version.tar.gz"
build_style=gnu_configure
configure_args="--without-gnome --without-kde --without-webkit
--without-mozjs --without-networkmanager --with-python"
short_desc="A library handling all the details of proxy configuration"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=59ded160b3547d29e37cc9d06359f7f37d94112214e4532430cd65e704c1339a
long_desc="
libproxy is a library that provides automatic proxy configuration management.
libproxy offers the following features:
* extremely small core footprint (less than 35K)
* no external dependencies within libproxy core (libproxy plugins may
have dependencies)
* only 3 functions in the stable external API
* dynamic adjustment to changing network topology
* a standard way of dealing with proxy settings across all scenarios
* a sublime sense of joy and accomplishment"
subpackages="devel python"
Add_dependency build pkg-config
Add_dependency build python
Add_dependency run glibc