wok-6.x diff gtkhotkey/receipt @ rev 13938
xvkbd: add 3d effects
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Jan 26 17:23:58 2013 +0000 (2013-01-26) |
parents | |
children | 7d6089953592 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gtkhotkey/receipt Sat Jan 26 17:23:58 2013 +0000 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gtkhotkey" 1.7 +VERSION="0.2.1" 1.8 +CATEGORY="x-window" 1.9 +SHORT_DESC="Platform independent hotkey handling for Gtk+ applications." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="https://launchpad.net/gtkhotkey" 1.13 +WGET_URL="https://launchpad.net/gtkhotkey/0.2/$VERSION/+download/$TARBALL" 1.14 + 1.15 +DEPENDS="glib libgio gtk+" 1.16 +BUILD_DEPENDS="wget glib-dev libgio-dev gtk+-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + sed -i 's|<glib/.*h>|<glib.h>|' src/x11/tomboykeybinder.h src/gtk-hotkey-error.h 1.23 + ./configure $CONFIGURE_ARGS && 1.24 + make && make install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib 1.31 + cp -s $install/usr/lib/*.so* $fs/usr/lib 1.32 +}