wok-next view libgsf/receipt @ rev 20037

Up sshttp (0-35s2), sshguard (2.0.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 18:48:45 2017 +0200 (2017-10-22)
parents f463de72afe3
children 2d54d154d5ca
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libgsf"
4 VERSION="1.14.41"
5 CATEGORY="libs"
6 SHORT_DESC="GNOME Structured File Library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://developer.gnome.org/gsf/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="intltool gtk-doc glib-dev libxml2-dev zlib-dev bzip2-dev \
15 gdk-pixbuf-dev gobject-introspection-dev"
16 SPLIT="libgsf-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # http://www.linuxfromscratch.org/blfs/view/stable/general/libgsf.html
22 ./configure \
23 --enable-introspection \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 case $PACKAGE in
32 libgsf)
33 copy @std
34 DEPENDS="bzlib gdk-pixbuf glib libxml2 zlib"
35 ;;
36 *-dev)
37 copy @dev
38 DEPENDS="libgsf bzip2-dev glib-dev libffi-dev libxml2-dev pcre-dev \
39 util-linux-blkid-dev util-linux-mount-dev util-linux-uuid-dev \
40 xz-dev zlib-dev"
41 ;;
42 esac
43 }