wok annotate libkeybinder/receipt @ rev 23427
updated php-auth-sasl (1.0.4 -> 1.1.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 01 16:13:53 2020 +0100 (2020-04-01) |
parents | 10c4b26178ec |
children | ee53899c6189 |
rev | line source |
---|---|
al@14138 | 1 # SliTaz package receipt. |
al@14138 | 2 |
al@14138 | 3 PACKAGE="libkeybinder" |
al@14138 | 4 VERSION="0.3.0" |
al@14138 | 5 CATEGORY="x-window" |
al@14138 | 6 SHORT_DESC="Library for registering global keyboard shortcuts" |
al@14138 | 7 MAINTAINER="al.bobylev@gmail.com" |
pascal@14714 | 8 LICENSE="GPL2" |
pascal@20673 | 9 WEB_SITE="https://github.com/kupferlauncher/keybinder" |
al@14138 | 10 SOURCE="keybinder" |
al@14138 | 11 TARBALL="$SOURCE-$VERSION.tar.gz" |
al@14138 | 12 WGET_URL="http://kaizer.se/publicfiles/$SOURCE/$TARBALL" |
al@14138 | 13 |
al@14138 | 14 DEPENDS="gtk+" |
al@14138 | 15 BUILD_DEPENDS="gtk+-dev gobject-introspection-dev xorg-libXext-dev python-dev \ |
pascal@19740 | 16 pygtk-dev pygobject-dev automake autoconf libtool lua5.1-dev" |
al@14138 | 17 |
al@14138 | 18 # Rules to configure and make the package. |
al@14138 | 19 compile_rules() |
al@14138 | 20 { |
pascal@14199 | 21 autoreconf -vif && |
pascal@19740 | 22 ./configure \ |
pascal@19740 | 23 --with-lua-suffix=5.1 \ |
pascal@19740 | 24 --with-lua-includes=/usr/include/lua/5.1 \ |
pascal@19740 | 25 $CONFIGURE_ARGS && |
pascal@19740 | 26 make && make install |
al@14138 | 27 } |
al@14138 | 28 |
al@14138 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@14138 | 30 genpkg_rules() |
al@14138 | 31 { |
al@14138 | 32 mkdir -p $fs/usr/lib |
al@14138 | 33 cp -a $install/usr/lib/*so* $fs/usr/lib |
al@14138 | 34 cp -a $install/usr/lib/python* $fs/usr/lib |
al@14138 | 35 } |
al@18077 | 36 |