wok view gssdp/receipt @ rev 22367

fix locale-* post_remove
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 22 12:30:25 2019 +0100 (2019-11-22)
parents 893447290d82
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="gssdp"
4 VERSION="0.14.7"
5 CATEGORY="network"
6 SHORT_DESC="Resource discovery and announcement over SSDP."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
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"
14 BUILD_DEPENDS="wget pkg-config libsoup-dev sqlite-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/lib/*.so* $fs/usr/lib
31 }