wok annotate libgee/receipt @ rev 21959

updated some more locales for squirrelmail (1.4.13 -> 1.4.18)
author Hans-G?nter Theisgen
date Thu Oct 10 15:33:31 2019 +0100 (2019-10-10)
parents b23839382755
children 6831608a1b2a
rev   line source
pankso@12188 1 # SliTaz package receipt.
pankso@12188 2
pankso@12188 3 PACKAGE="libgee"
Hans-G?nter@21224 4 VERSION="0.20.1"
pankso@12188 5 CATEGORY="x-window"
pankso@12188 6 SHORT_DESC="GObject collection library."
pankso@12188 7 MAINTAINER="pankso@slitaz.org"
pascal@14714 8 LICENSE="LGPL2.1"
Hans-G?nter@21224 9 WEB_SITE="https://live.gnome.org/Libgee"
Hans-G?nter@21224 10
pankso@12188 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21224 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
pankso@12188 13
pankso@12188 14 DEPENDS="glib libffi"
Hans-G?nter@21224 15 BUILD_DEPENDS="bash glib-dev gobject-introspection-dev libffi-dev vala"
pankso@12188 16
pankso@12188 17 # Rules to configure and make the package.
pankso@12188 18 compile_rules()
pankso@12188 19 {
pascal@20617 20 sed -i 's|Func get_value|Func<V> get_value|' gee/gee-0.8.vapi
Hans-G?nter@21224 21 ./configure \
Hans-G?nter@21224 22 --enable-introspection=yes \
al@14237 23 $CONFIGURE_ARGS &&
Hans-G?nter@21224 24 make -j 1 &&
al@14237 25 make install
pankso@12188 26 }
pankso@12188 27
pankso@12188 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@12188 29 genpkg_rules()
pankso@12188 30 {
pankso@12188 31 mkdir -p $fs/usr/lib
al@14237 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@12188 33 }