wok annotate gtkhotkey/receipt @ rev 17705

Up firefox-official (36.0)
author Richard Dunbar <mojo@slitaz.org>
date Mon Mar 02 06:32:17 2015 -0500 (2015-03-02)
parents e9e7c1c5617e
children d3eb5f4b53ea
rev   line source
pascal@12907 1 # SliTaz package receipt.
pascal@12907 2
pascal@12907 3 PACKAGE="gtkhotkey"
pascal@12907 4 VERSION="0.2.1"
pascal@12907 5 CATEGORY="x-window"
pascal@12907 6 SHORT_DESC="Platform independent hotkey handling for Gtk+ applications."
pascal@12907 7 MAINTAINER="pankso@slitaz.org"
pascal@14997 8 LICENSE="LGPL3"
pascal@12907 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@12907 10 WEB_SITE="https://launchpad.net/gtkhotkey"
pascal@12907 11 WGET_URL="https://launchpad.net/gtkhotkey/0.2/$VERSION/+download/$TARBALL"
pascal@12907 12
pascal@12907 13 DEPENDS="glib libgio gtk+"
pascal@12907 14 BUILD_DEPENDS="wget glib-dev libgio-dev gtk+-dev"
pascal@12907 15
pascal@12907 16 # Rules to configure and make the package.
pascal@12907 17 compile_rules()
pascal@12907 18 {
pascal@12907 19 cd $src
pascal@12907 20 sed -i 's|<glib/.*h>|<glib.h>|' src/x11/tomboykeybinder.h src/gtk-hotkey-error.h
pascal@12907 21 ./configure $CONFIGURE_ARGS &&
pascal@12907 22 make && make install
pascal@12907 23 }
pascal@12907 24
pascal@12907 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12907 26 genpkg_rules()
pascal@12907 27 {
pascal@12907 28 mkdir -p $fs/usr/lib
pascal@12907 29 cp -s $install/usr/lib/*.so* $fs/usr/lib
pascal@12907 30 }