wok annotate libgnome-keyring/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents c49277dae7e9
children 57fc61c8b313
rev   line source
pascal@11205 1 # SliTaz package receipt.
pascal@11205 2
pascal@11205 3 PACKAGE="libgnome-keyring"
al@19784 4 VERSION="2.32.0"
pascal@11205 5 CATEGORY="x-window"
pascal@11205 6 SHORT_DESC="A libray that keep password and other secrets for users."
pascal@11205 7 MAINTAINER="pankso@slitaz.org"
pascal@15004 8 LICENSE="LGPL2"
pascal@11205 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20671 10 WEB_SITE="https://www.gnome.org"
pascal@11205 11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@19099 12 HOST_ARCH="i486 arm"
pascal@11205 13
gokhlayeh@11456 14 DEPENDS="libgcrypt dbus glib"
pascal@12610 15 BUILD_DEPENDS="libgcrypt-dev dbus-dev glib-dev intltool"
pascal@11205 16
pascal@11205 17 # Rules to configure and make the package.
pascal@11205 18 compile_rules()
pascal@11205 19 {
pascal@11205 20 cd $src
pascal@11205 21 ./configure \
pascal@11205 22 --libexecdir=/usr/lib/$PACKAGE \
pascal@11205 23 --sysconfdir=/etc/gnome \
gokhlayeh@11573 24 --disable-pam \
gokhlayeh@11573 25 $CONFIGURE_ARGS &&
pascal@11205 26 make && make install
pascal@11205 27 }
pascal@11205 28
pascal@11205 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11205 30 genpkg_rules()
pascal@11205 31 {
pascal@11205 32 mkdir -p $fs/usr/lib
pascal@11205 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11205 34 }