wok view libupnp/receipt @ rev 23982

dog: fix bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 21 13:13:55 2020 +0000 (2020-11-21)
parents c20cd1a0411a
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libupnp"
4 VERSION="1.12.0"
5 CATEGORY="network"
6 SHORT_DESC="The portable Universal Plug and Play (UPnP)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://pupnp.sourceforge.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/pupnp/$TARBALL"
14 DEPENDS="libxml2"
15 BUILD_DEPENDS="libxml2-dev libpthread-stubs"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --disable-largefile \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }