wok view libsecret/receipt @ rev 19181

cups: usb uri example
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 04 11:05:21 2016 +0200 (2016-06-04)
parents c13658501c85
children ac006a7bf27c
line source
1 # SliTaz package receipt.
3 PACKAGE="libsecret"
4 VERSION="0.18"
5 SHORT_DESC="GObject based library for accessing the Secret Service API."
6 MAINTAINER="devl547@gmail.com"
7 LICENSE="LGPL2.1"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 CATEGORY="security"
10 WEB_SITE="http://gnome.org"
11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/$VERSION/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libgcrypt"
15 BUILD_DEPENDS="libgcrypt-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --disable-static \
22 --disable-manpages \
23 --disable-gtk-doc \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }