wok view libupnp/receipt @ rev 8714

Fixed subversion by compiling with -j1. I made it compile without libproxy now.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Feb 17 19:02:25 2011 +0000 (2011-02-17)
parents 97b738de32f6
children 9fe40722d01d
line source
1 # SliTaz package receipt.
3 PACKAGE="libupnp"
4 VERSION="1.6.9"
5 CATEGORY="network"
6 SHORT_DESC="The portable Universal Plug and Play (UPnP)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libxml2"
9 BUILD_DEPENDS="libxml2-dev libpthread-stubs"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://pupnp.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/pupnp/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 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/lib/*.so* $fs/usr/lib
30 }