wok annotate gupnp/receipt @ rev 16959
mplayer-opt: typo, --disable-esd
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Tue Jul 29 01:39:13 2014 +0200 (2014-07-29) |
parents | |
children | cb18a67a7ff6 |
rev | line source |
---|---|
pascal@16072 | 1 # SliTaz package receipt. |
pascal@16072 | 2 |
pascal@16072 | 3 PACKAGE="gupnp" |
pascal@16072 | 4 VERSION="0.20.10" |
pascal@16072 | 5 CATEGORY="network" |
pascal@16072 | 6 SHORT_DESC="Framework for creating UPnP devices and control points." |
pascal@16072 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@16072 | 8 LICENSE="LGPL2" |
pascal@16072 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@16072 | 10 WEB_SITE="https://wiki.gnome.org/action/show/Projects/GUPnP" |
pascal@16072 | 11 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL" |
pascal@16072 | 12 |
pascal@16072 | 13 DEPENDS="libsoup util-linux-uuid gssdp" |
pascal@16072 | 14 BUILD_DEPENDS="wget libsoup-dev util-linux-uuid-dev gssdp-dev" |
pascal@16072 | 15 |
pascal@16072 | 16 # Rules to configure and make the package. |
pascal@16072 | 17 compile_rules() |
pascal@16072 | 18 { |
pascal@16072 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@16072 | 20 --mandir=/usr/share/man \ |
pascal@16072 | 21 $CONFIGURE_ARGS && |
pascal@16072 | 22 make && |
pascal@16072 | 23 make DESTDIR=$DESTDIR install |
pascal@16072 | 24 } |
pascal@16072 | 25 |
pascal@16072 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@16072 | 27 genpkg_rules() |
pascal@16072 | 28 { |
pascal@16072 | 29 mkdir -p $fs/usr/lib |
pascal@16072 | 30 cp -a $install/usr/bin $fs/usr |
pascal@16072 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@16072 | 32 } |