wok view gupnp/receipt @ rev 16961

at-spi2-atk: Update wget url
author Yuri Pourre <yuripourre@gmail.com>
date Tue Jul 29 00:06:42 2014 -0300 (2014-07-29)
parents
children cb18a67a7ff6
line source
1 # SliTaz package receipt.
3 PACKAGE="gupnp"
4 VERSION="0.20.10"
5 CATEGORY="network"
6 SHORT_DESC="Framework for creating UPnP devices and control points."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://wiki.gnome.org/action/show/Projects/GUPnP"
11 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libsoup util-linux-uuid gssdp"
14 BUILD_DEPENDS="wget libsoup-dev util-linux-uuid-dev gssdp-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }