wok annotate telepathy-glib/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 9689f1b75619
children 934055de50e2
rev   line source
pascal@17202 1 # SliTaz package receipt.
pascal@17202 2
pascal@17202 3 PACKAGE="telepathy-glib"
pascal@17202 4 VERSION="0.99.11"
pascal@17202 5 CATEGORY="network"
pascal@17202 6 SHORT_DESC="A D-Bus framework for unifying real time communication."
pascal@17202 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17202 8 LICENSE="LGPL2.1"
pascal@17202 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20669 10 WEB_SITE="https://telepathy.freedesktop.org/wiki/"
pascal@20669 11 WGET_URL="https://telepathy.freedesktop.org/releases/$PACKAGE/$TARBALL"
pascal@17202 12
pascal@17482 13 DEPENDS="glib gobject-introspection libgio dbus dbus-glib libffi"
pascal@17202 14 BUILD_DEPENDS="glib-dev gobject-introspection-dev libgio-dev \
pascal@17203 15 dbus-dev dbus-glib-dev intltool diffutils libffi libxslt gtk-doc"
pascal@17202 16
pascal@17202 17 # Rules to configure and make the package.
pascal@17202 18 compile_rules()
pascal@17202 19 {
pascal@17202 20 ./configure --prefix=/usr \
pascal@17202 21 $CONFIGURE_ARGS &&
pascal@17202 22 make &&
pascal@17202 23 make DESTDIR=$DESTDIR install
pascal@17202 24 }
pascal@17202 25
pascal@17202 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17202 27 genpkg_rules()
pascal@17202 28 {
pascal@17202 29 mkdir -p $fs/usr/share $fs/usr/lib
pascal@17204 30 cp -a $install/usr/share/gir* $fs/usr/share
pascal@17204 31 cp -a $install/usr/share/glib* $fs/usr/share
pascal@17205 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@17202 33 cp -a $install/usr/lib/gir* $fs/usr/lib
pascal@17202 34 }