wok-next view libsecret/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents e70c0b9c5adf
children 5841522533ec
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libsecret"
4 VERSION="0.18.5"
5 CATEGORY="security"
6 SHORT_DESC="GObject bindings for Secret Service API"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://wiki.gnome.org/Projects/Libsecret"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="libtool intltool libxslt docbook-xsl libgcrypt-dev \
15 gobject-introspection-dev vala util-linux-mount-dev"
16 SPLIT="libsecret-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 libsecret)
32 copy @std
33 DEPENDS="glib libffi libgcrypt libgpg-error pcre \
34 util-linux-blkid util-linux-mount util-linux-uuid zlib"
35 ;;
36 *-dev)
37 copy @dev
38 DEPENDS="glib-dev libffi-dev libgcrypt-dev \
39 libgpg-error-dev pcre-dev util-linux-blkid-dev \
40 util-linux-mount-dev util-linux-uuid-dev zlib-dev"
41 ;;
42 esac
43 }