wok view lxlauncher/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 17e313b5b9c1
children c9e270dd464f
line source
1 # SliTaz package receipt.
3 PACKAGE="lxlauncher"
4 VERSION="0.2.4"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE desktop launcher."
7 LICENSE="GPL3"
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://lxde.org/"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
13 DEPENDS="xorg-libX11 gtk+ gnome-menus startup-notification menu-cache xorg-libXdamage"
14 BUILD_DEPENDS="xorg-libX11-dev gtk+-dev gnome-menus gnome-menus-dev \
15 menu-cache-dev startup-notification-dev startup-notification libxcb-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 #export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
21 ## Fix infinite loop.
22 #touch po/stamp-it
23 ## Default icons to 32
24 #sed -i s/'120'/'100'/ src/lxlauncher.c
25 #sed -i s/'48'/'32'/ src/lxlauncher.c
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share
39 cp -a $install/usr/bin $fs/usr
41 # SliTaz home make config files
42 cp -a $install/etc $fs
43 cp -a $stuff/gtkrc $fs/etc/xdg/lxlauncher
45 cp -a $install/usr/share/desktop-directories $fs/usr/share
47 #cp -a $stuff/background $fs/usr/share/lxlauncher
48 #background="internet learn play settings work"
49 #for i in $background; do
50 # ln -sf slitaz.jpg $fs/usr/share/lxlauncher/background/accessibility_${i}_wallpaper.jpg
51 #done
53 chown -R root.root $fs
54 }