wok view lxshortcut/receipt @ rev 17988

Update LXDE stuff.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 23 01:34:37 2015 +0300 (2015-04-23)
parents 2b9f96603415
children c9e270dd464f
line source
1 # SliTaz package receipt.
3 PACKAGE="lxshortcut"
4 VERSION="0.1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Edit application shortcuts compliant with the freedesktop.org Desktop Entry spec."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.lxde.org/"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
13 DEPENDS="glib glibc-base libgio expat zlib \
14 gtk+ atk cairo pango pixman libpng fontconfig freetype \
15 xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender"
16 BUILD_DEPENDS="pkg-config gettext intltool gtk+-dev \
17 xorg-xproto xorg-renderproto xorg-libX11-dev xorg-kbproto xorg-libXau-dev xorg-libXdmcp-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ## Fix infinite loop.
23 #touch po/stamp-it
24 ./configure \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/lxshortcut $fs/usr/share
38 }