wok view libsecret/receipt @ rev 17741

perl-class-accessor, perl-file-rsync, perl-libjson, perl-texi2html: add bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 06 20:20:59 2015 +0100 (2015-03-06)
parents
children c13658501c85
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.org"
7 TARBALL="$PACKAGE-$VERSION.tar.xz"
8 CATEGORY="security"
9 WEB_SITE="http://gnome.org"
10 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/$VERSION/$TARBALL"
11 HOST_ARCH="i486 arm"
13 DEPENDS="libgcrypt"
14 BUILD_DEPENDS="libgcrypt-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --disable-static \
21 --disable-manpages \
22 --disable-gtk-doc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }