wok view gtkhotkey/receipt @ rev 16030

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