wok view lxrandr/receipt @ rev 16752

Up: slitaz-boot-scripts (5.6.3)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 15 17:19:44 2014 +0300 (2014-06-15)
parents 380ffe05937a
children 3ff62c9179db
line source
1 # SliTaz package receipt.
3 PACKAGE="lxrandr"
4 VERSION="0.1.2"
5 CATEGORY="utilities"
6 SHORT_DESC="LXDE screen manager."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://lxde.org"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="gtk+ xorg-xrandr"
15 BUILD_DEPENDS="gtk+-dev xorg-libXrandr-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # Fix sources.
21 echo "Icon=video-display" >> data/lxrandr.desktop.in
22 touch po/stamp-it
23 ./configure \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share $fs/usr
35 # Remove man & locales
36 rm -rf $fs/usr/share/man
37 rm -rf $fs/usr/share/locale
38 }