wok view lxterminal/receipt @ rev 11139

Up: wxpython to 2.8.12.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 26 21:03:47 2011 +0000 (2011-10-26)
parents b304b521220c
children f01409ef6d29
line source
1 # SliTaz package receipt.
4 PACKAGE="lxterminal"
5 VERSION="0.1.9"
6 CATEGORY="utilities"
7 SHORT_DESC="LXDE X Terminal emulator."
8 MAINTAINER="gokhlayeh@slitaz.org"
9 DEPENDS="vte gtk+"
10 BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev"
11 SUGGESTED="lxterminal-locales"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://lxde.org"
14 WGET_URL="http://downloads.sourceforge.net/project/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20$VERSION/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share $fs/usr
35 # Remove man & locales
36 rm -rf $fs/usr/share/man
37 rm -rf $fs/usr/share/locale
38 }