wok view lxdm/receipt @ rev 12051

removed leafpad.desktop from gvim
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Mar 07 17:29:29 2012 -0800 (2012-03-07)
parents ea3283ffaffe
children 000b74667629
line source
1 # SliTaz package receipt.
3 PACKAGE="lxdm"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Login manager from LXDE."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="slitaz-toolchain intltool"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://lxde.org/"
12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --libexecdir=/usr/lib/lxdm \
21 --sysconfdir=/etc \
22 --without-pam \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/etc $fs/usr/share
32 cp -a $_pkg/etc/lxdm $fs/etc
33 cp -a $_pkg/usr/lib $fs/usr
34 cp -a $_pkg/usr/sbin $fs/usr
35 cp -a $_pkg/usr/share/lxdm $fs/usr/share
36 }