wok-current annotate xbindkeys/receipt @ rev 12027
xournal: don't modify desktop file
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Tue Mar 06 11:42:45 2012 -0800 (2012-03-06) |
parents | |
children | eb8067417980 |
rev | line source |
---|---|
pascal@11204 | 1 # SliTaz package receipt. |
pascal@11204 | 2 |
pascal@11204 | 3 PACKAGE="xbindkeys" |
pascal@11204 | 4 VERSION="1.8.3" |
pascal@11204 | 5 CATEGORY="x-window" |
pascal@11204 | 6 MAINTAINER="jozee@slitaz.org" |
pascal@11204 | 7 SHORT_DESC="Launch shell commands with your keyboard or your mouse under X" |
pascal@11204 | 8 BUILD_DEPENDS=" xorg-libX11-dev" |
pascal@11204 | 9 WEB_SITE="http://hocwp.free.fr/xbindkeys" |
pascal@11204 | 10 DEPENDS="xorg-libX11" |
pascal@11204 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@11204 | 12 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@11204 | 13 TAGS="keyboard" |
pascal@11204 | 14 |
pascal@11204 | 15 # Rules to configure and make the package. |
pascal@11204 | 16 |
pascal@11204 | 17 compile_rules() { |
pascal@11204 | 18 cd $src |
pascal@11204 | 19 ./configure --prefix=/usr \ |
pascal@11204 | 20 --disable-tk \ |
pascal@11204 | 21 --disable-guile && |
pascal@11204 | 22 make && |
pascal@11204 | 23 make DESTDIR=$PWD/_pkg install |
pascal@11204 | 24 } |
pascal@11204 | 25 |
pascal@11204 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11204 | 27 genpkg_rules() |
pascal@11204 | 28 { |
pascal@11204 | 29 mkdir -p $fs/usr |
pascal@11204 | 30 cp -a $_pkg/usr/bin $fs/usr |
pascal@11204 | 31 |
pascal@11204 | 32 } |