wok view lxlauncher/receipt @ rev 17992

Add few descriptions (from pkgs.org)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 23 16:47:39 2015 +0300 (2015-04-23)
parents c73f683146cf
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="lxlauncher"
4 VERSION="0.2.4"
5 CATEGORY="x-window"
6 SHORT_DESC="LXDE launcher for netbooks"
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"
12 TAGS="LXDE netbook"
14 DEPENDS="xorg-libX11 gtk+ gnome-menus startup-notification menu-cache xorg-libXdamage"
15 BUILD_DEPENDS="xorg-libX11-dev gtk+-dev gnome-menus gnome-menus-dev \
16 menu-cache-dev startup-notification-dev startup-notification libxcb-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 #export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
22 ## Fix infinite loop.
23 #touch po/stamp-it
24 ## Default icons to 32
25 #sed -i s/'120'/'100'/ src/lxlauncher.c
26 #sed -i s/'48'/'32'/ src/lxlauncher.c
27 ./configure \
28 --prefix=/usr \
29 --sysconfdir=/etc \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share
40 cp -a $install/usr/bin $fs/usr
42 # SliTaz home make config files
43 cp -a $install/etc $fs
44 cp -a $stuff/gtkrc $fs/etc/xdg/lxlauncher
46 cp -a $install/usr/share/desktop-directories $fs/usr/share
48 #cp -a $stuff/background $fs/usr/share/lxlauncher
49 #background="internet learn play settings work"
50 #for i in $background; do
51 # ln -sf slitaz.jpg $fs/usr/share/lxlauncher/background/accessibility_${i}_wallpaper.jpg
52 #done
54 chown -R root.root $fs
55 }