wok-next view lxinput/receipt @ rev 20404

Up cookutils (1019)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 07 14:34:32 2017 +0200 (2017-12-07)
parents 7b3799fbd0b0
children c4e53a39395a
line source
1 # SliTaz package receipt.
3 PACKAGE="lxinput"
4 VERSION="0.3.5"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE keyboard and mouse configuration"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://lxde.org"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
15 BUILD_DEPENDS="intltool gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # http://www.linuxfromscratch.org/blfs/view/stable/lxde/lxinput.html
22 sed -i 's|^Icon=.*$|Icon=preferences-desktop-keyboard|' \
23 data/lxinput.desktop.in
25 ./configure \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 # skip icons (found in the icon theme)
34 copy bin/ *.ui
35 DEPENDS="atk cairo fontconfig freetype gdk-pixbuf glib gtk+ pango \
36 xorg-libX11 xorg-xset"
37 TAGS="LXDE keyboard mouse"
38 }