wok view libupnp/receipt @ rev 22921

updated gvim (8.1 -> 8.2)
author Hans-G?nter Theisgen
date Tue Feb 25 07:04:08 2020 +0100 (2020-02-25)
parents 8d6f480bf664
children 6d955cb4f646
line source
1 # SliTaz package receipt.
3 PACKAGE="libupnp"
4 VERSION="1.8.4"
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 }