wok view lxterminal/receipt @ rev 6124

tazbb : typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 05 15:13:29 2010 +0200 (2010-09-05)
parents
children ac556fcc1041
line source
1 # SliTaz package receipt.
3 PACKAGE="lxterminal"
4 VERSION="0.1.8"
5 CATEGORY="utilities"
6 SHORT_DESC="LXDE X Terminal emulator."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="vte gtk+"
9 BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev"
10 SUGGESTED="lxterminal-locales"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://lxde.org"
13 WGET_URL="http://downloads.sourceforge.net/project/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20$VERSION/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share $fs/usr
34 # Remove man & locales
35 rm -rf $fs/usr/share/man
36 rm -rf $fs/usr/share/locale
37 }