wok-stable view libgee/receipt @ rev 12460

fix symlinks
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 09:09:24 2017 +0200 (2017-04-28)
parents a4f598c02a37
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libgee"
4 VERSION="0.6.4"
5 CATEGORY="x-window"
6 SHORT_DESC="GObject collection library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://live.gnome.org/Libgee"
10 WGET_URL="$GNOME_MIRROR/libgee/0.6/$TARBALL"
12 DEPENDS="glib libffi"
13 BUILD_DEPENDS="glib-dev libffi-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }