wok-next view libgnome-keyring/receipt @ rev 20712

libtorrent: fix rtorrent building for non-64bit archs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:13:53 2018 +0300 (2018-05-27)
parents 757d032c55c7
children 342b30daff76
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libgnome-keyring"
4 VERSION="2.32.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A library that keep password and other secrets for users"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://www.gnome.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
15 SPLIT="libgnome-keyring-dev"
17 compile_rules() {
18 ./configure \
19 --libexecdir=/usr/lib/$PACKAGE \
20 --sysconfdir=/etc/gnome \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 libgnome-keyring)
30 copy @std
31 DEPENDS="dbus glib libgcrypt libgpg-error"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="libgnome-keyring dbus-dev glib-dev libgcrypt-dev \
36 libgpg-error-dev pcre-dev"
37 ;;
38 esac
39 }