wok annotate gnet/receipt @ rev 19729
libwmf: no cp + wildcard + absolute links
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Feb 17 08:27:26 2017 +0100 (2017-02-17) |
parents | d3eb5f4b53ea |
children | ad40252740a7 |
rev | line source |
---|---|
pankso@2742 | 1 # SliTaz package receipt. |
pankso@2742 | 2 |
pankso@2742 | 3 PACKAGE="gnet" |
pankso@2742 | 4 VERSION="2.0.8" |
pankso@2742 | 5 CATEGORY="network" |
pankso@2742 | 6 SHORT_DESC="GNet is a simple network library." |
pankso@2742 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15022 | 8 LICENSE="LGPL" |
pankso@2742 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@2742 | 10 WEB_SITE="http://www.gnetlibrary.org/" |
pascal@17869 | 11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/gnet/${VERSION%.*}/$TARBALL" |
pascal@15021 | 12 |
pascal@2845 | 13 DEPENDS="glib" |
pascal@15620 | 14 BUILD_DEPENDS="glib-dev util-linux-uuid-dev" |
pankso@2742 | 15 |
pankso@2742 | 16 # Rules to configure and make the package. |
pankso@2742 | 17 compile_rules() |
pankso@2742 | 18 { |
pascal@19714 | 19 sed -i '/define _tcase_add_test/d' tests/check/gnetcheck.h |
pascal@19714 | 20 sed -i 's/boolean.*_gnet_check_run_test_func.*/&\n#define _tcase_add_test __gnet_tcase_add_test/' tests/check/gnetcheck.h |
pascal@12587 | 21 # Binutils 2.22 break many packages build without LDFLAGS set correctly. |
pascal@17670 | 22 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lXt" |
pankso@2742 | 23 ./configure \ |
pankso@2742 | 24 --prefix=/usr \ |
pankso@2742 | 25 --infodir=/usr/share/info \ |
pankso@2742 | 26 --mandir=/usr/share/man \ |
pankso@2742 | 27 $CONFIGURE_ARGS && |
pankso@2742 | 28 make && |
pascal@15021 | 29 make DESTDIR=$DESTDIR install |
pankso@2742 | 30 } |
pankso@2742 | 31 |
pankso@2742 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2742 | 33 genpkg_rules() |
pankso@2742 | 34 { |
pankso@2742 | 35 mkdir -p $fs/usr/lib |
pascal@15021 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@2742 | 37 } |