wok-next view lxinput/receipt @ rev 21013

Small updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Oct 14 05:29:23 2018 +0300 (2018-10-14)
parents c4e53a39395a
children f48456621a9d
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="https://lxde.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
14 BUILD_DEPENDS="intltool gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # http://www.linuxfromscratch.org/blfs/view/stable/lxde/lxinput.html
21 sed -i 's|^Icon=.*$|Icon=preferences-desktop-keyboard|' \
22 data/lxinput.desktop.in
24 ./configure \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 # skip icons (found in the icon theme)
33 copy bin/ *.ui
34 DEPENDS="atk cairo fontconfig freetype gdk-pixbuf glib gtk+ pango \
35 xorg-libX11 xorg-xset"
36 TAGS="LXDE keyboard mouse"
37 }