wok-next view libupnp/receipt @ rev 20486

outguess: fix install path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 10:46:52 2018 +0100 (2018-03-12)
parents 8d6f480bf664
children 5841522533ec
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libupnp"
4 VERSION="1.6.17"
5 CATEGORY="network"
6 SHORT_DESC="The portable Universal Plug and Play (UPnP)"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://pupnp.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/pupnp/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev libpthread-stubs"
15 SPLIT="libupnp-dev"
17 compile_rules() {
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libupnp)
28 copy @std
29 DEPENDS="libxml2"
30 ;;
31 *-dev)
32 copy @dev
33 ;;
34 esac
35 }