wok view gtkhotkey/receipt @ rev 18160

Add dcmtk
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 23 11:43:20 2015 +0200 (2015-06-23)
parents 7d6089953592
children dfc51ce7954a
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/${VERSION%.*}/$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 sed -i 's|<glib/.*h>|<glib.h>|' src/x11/tomboykeybinder.h src/gtk-hotkey-error.h
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -s $install/usr/lib/*.so* $fs/usr/lib
29 }