wok-next annotate glib/receipt @ rev 21661

updated fonttosfnt (1.0.5 -> 1.1.0)
author Hans-G?nter Theisgen
date Sat Jun 27 13:41:53 2020 +0100 (2020-06-27)
parents 4d9f82dabdbb
children 1864ba66f0b2
rev   line source
al@19761 1 # SliTaz package receipt v2.
pankso@22 2
pankso@22 3 PACKAGE="glib"
al@21085 4 VERSION="2.58.2"
pankso@22 5 CATEGORY="x-window"
al@19761 6 SHORT_DESC="C routines"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@19780 9 WEB_SITE="https://developer.gnome.org/glib/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/glib2.html"
pankso@16015 11
al@19590 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19761 13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
al@21085 14 TARBALL_SHA1="9831bbdca749a42526d0afc4b31799e8be22037c"
al@19590 15
al@21020 16 BUILD_DEPENDS="automake libtool zlib-dev libffi-dev gettext-dev \
al@21071 17 util-linux-mount-dev pcre-dev libxslt docbook-xsl elfutils-dev"
al@21071 18 SPLIT="$PACKAGE-static $PACKAGE-dev $PACKAGE"
pankso@15967 19
al@21071 20 COPY_static="*.a"
al@21071 21 COPY_dev="gdbus-codegen gobject-query bin/gresource bin/gtester* \
al@21071 22 bin/glib-gettextize bin/glib-mkenums gdb/ gettext/ glib-2.0/ @dev @rm"
al@21071 23
al@21071 24 DEPENDS_std="libffi libpcre util-linux-mount zlib"
al@21085 25 DEPENDS_dev="$PACKAGE elfutils libffi libpcre pcre-dev python \
al@21085 26 util-linux-mount-dev zlib-dev perl"
al@21071 27
al@21071 28 CAT_static="development|static libraries"
al@20750 29
al@20405 30 compile_rules() {
al@20730 31 # --enable-static: desktop-file-validate-static require such lib
al@21071 32 ./autogen.sh \
al@20730 33 --enable-debug=no \
al@20730 34 --enable-static \
al@21071 35 --disable-selinux \
al@20730 36 --disable-fam \
al@21071 37 --enable-man \
al@20730 38 $CONFIGURE_ARGS &&
al@20730 39 fix libtool &&
al@20730 40 make &&
al@20730 41 make install
pankso@22 42 }