wok view lxinput/receipt @ rev 15600

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 15:25:09 2013 +0000 (2013-12-05)
parents 8ab73e236754
children 523db8f94fcb
line source
1 # SliTaz package receipt.
3 PACKAGE="lxinput"
4 VERSION="0.3.2"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE input manager (Keyboard and mouse settings)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://lxde.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/lxde/LXInput%20%28Kbd%20and%20amp_%20mouse%20config%29/LXInput%20${VERSION}/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/$PACKAGE $fs/usr/share
30 rm -rf $fs/usr/share/$PACKAGE/*.png
31 }