wok view jwm/receipt @ rev 193

Desktop files for Tazpkg (for upcomming slitaz-menus)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 07 11:49:57 2008 +0100 (2008-02-07)
parents 0a7773e78e1d
children fb4b753f4f90
line source
1 # SliTaz package receipt.
3 PACKAGE="jwm"
4 VERSION="2.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="JWM is a light Window Manager for the X window system."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.joewing.net/programs/jwm/"
11 WGET_URL="http://www.joewing.net/programs/jwm/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --sysconfdir=/etc/jwm \
21 --disable-fribidi \
22 $CONFIGURE_ARGS
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 mkdir -p $fs/etc/jwm
31 cp -a $src/src/jwm $fs/usr/bin
32 strip -s $fs/usr/bin/*
33 # Simple config file.
34 cp stuff/simple.jwmrc $fs/etc/jwm/system.jwmrc
35 cp stuff/simple.jwmrc $fs/etc/jwm/simple.jwmrc
36 }