wok view lxterminal/receipt @ rev 6714

linux/bootloader.sh: align initrdlen to 32bits
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 14 13:41:19 2010 +0200 (2010-10-14)
parents ac556fcc1041
children af022550edde
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@mailoo.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 }