wok-6.x annotate libupnp/receipt @ rev 22689
updated emacs (24.3 -> 26.3)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jan 20 16:49:20 2020 +0100 (2020-01-20) |
parents | 8d6f480bf664 |
children | 6d955cb4f646 |
rev | line source |
---|---|
pankso@4075 | 1 # SliTaz package receipt. |
pankso@4075 | 2 |
pankso@4075 | 3 PACKAGE="libupnp" |
Hans-G?nter@21327 | 4 VERSION="1.8.4" |
pankso@4075 | 5 CATEGORY="network" |
pankso@4075 | 6 SHORT_DESC="The portable Universal Plug and Play (UPnP)." |
pankso@4075 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15482 | 8 LICENSE="BSD" |
Hans-G?nter@21327 | 9 WEB_SITE="https://pupnp.sourceforge.io/" |
Hans-G?nter@21327 | 10 |
pankso@4075 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@4075 | 12 WGET_URL="$SF_MIRROR/pupnp/$TARBALL" |
pankso@4075 | 13 |
pascal@15482 | 14 DEPENDS="libxml2" |
pascal@15482 | 15 BUILD_DEPENDS="libxml2-dev libpthread-stubs" |
pascal@15482 | 16 |
pankso@4075 | 17 # Rules to configure and make the package. |
pankso@4075 | 18 compile_rules() |
pankso@4075 | 19 { |
Hans-G?nter@21327 | 20 ./configure \ |
Hans-G?nter@21327 | 21 --prefix=/usr \ |
Hans-G?nter@21327 | 22 --disable-largefile \ |
pankso@4075 | 23 $CONFIGURE_ARGS && |
Hans-G?nter@21327 | 24 make -j 1 && |
slaxemulator@12341 | 25 make DESTDIR=$DESTDIR install |
pankso@4075 | 26 } |
pankso@4075 | 27 |
pankso@4075 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@4075 | 29 genpkg_rules() |
pankso@4075 | 30 { |
pankso@4075 | 31 mkdir -p $fs/usr/lib |
pascal@15482 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@4075 | 33 } |