wok view libsecret/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
parents 33fe4993f697
children 46fc8daa3b41
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 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 }