wok view libgee/receipt @ rev 23741

updated workerfm again (2.19.6 -> 4.1.0)
author Hans-G?nter Theisgen
date Fri May 01 11:25:13 2020 +0100 (2020-05-01)
parents b23839382755
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="libgee"
4 VERSION="0.20.1"
5 CATEGORY="x-window"
6 SHORT_DESC="GObject collection library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://live.gnome.org/Libgee"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 DEPENDS="glib libffi"
15 BUILD_DEPENDS="bash glib-dev gobject-introspection-dev libffi-dev vala"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|Func get_value|Func<V> get_value|' gee/gee-0.8.vapi
21 ./configure \
22 --enable-introspection=yes \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make 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 }