wok annotate libsecret/receipt @ rev 23859

updated firefox-official (76.0 -> 77.0)
author Hans-G?nter Theisgen
date Wed Jun 17 15:35:48 2020 +0100 (2020-06-17)
parents ac006a7bf27c
children 6831608a1b2a
rev   line source
devl547@17583 1 # SliTaz package receipt.
devl547@17583 2
devl547@17583 3 PACKAGE="libsecret"
al@19226 4 VERSION="0.18.5"
al@19226 5 SERIES="0.18"
al@19226 6 SHORT_DESC="GObject based library for accessing the Secret Service API"
pascal@17957 7 MAINTAINER="devl547@gmail.com"
pascal@18334 8 LICENSE="LGPL2.1"
al@19226 9 CATEGORY="security"
pascal@21124 10 WEB_SITE="https://gnome.org/"
devl547@17583 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19226 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/$SERIES/$TARBALL"
devl547@17583 13 HOST_ARCH="i486 arm"
devl547@17583 14
al@19226 15 DEPENDS="libgio libgpg-error"
al@19226 16 BUILD_DEPENDS="libgcrypt-dev gobject-introspection-dev vala"
devl547@17583 17
devl547@17583 18 # Rules to configure and make the package.
devl547@17583 19 compile_rules()
devl547@17583 20 {
al@19226 21 ./configure \
devl547@17583 22 --disable-manpages \
devl547@17583 23 $CONFIGURE_ARGS &&
al@19226 24 make && make install
devl547@17583 25 }
devl547@17583 26
devl547@17583 27 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@17583 28 genpkg_rules()
devl547@17583 29 {
devl547@17583 30 mkdir -p $fs/usr/lib
al@19226 31 cp -a $install/usr/bin $fs/usr
devl547@17583 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
devl547@17583 33 }