wok-next annotate gupnp/receipt @ rev 17979
mtpaint: view external using GPicView, print image using Yad, view documentation online using TazWeb.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Apr 18 17:02:44 2015 +0300 (2015-04-18) |
parents | 893447290d82 |
children | b367284a8ac3 |
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@17758 | 14 BUILD_DEPENDS="wget libsoup-dev util-linux-uuid-dev gssdp-dev sqlite-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 } |