wok rev 5956

Add: lxterminal 0.1.8
author Antoine Bodin <gokhlayeh@mailoo.org>
date Tue Aug 03 22:26:29 2010 +0200 (2010-08-03)
parents 02eb51f3faf9
children 687e0e998250
files lxterminal-locales/receipt lxterminal/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lxterminal-locales/receipt	Tue Aug 03 22:26:29 2010 +0200
     1.3 @@ -0,0 +1,21 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="lxterminal-locales"
     1.7 +VERSION="0.1.8"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="LXDE X Terminal emulator locales."
    1.10 +MAINTAINER="gokhlayeh@mailoo.org"
    1.11 +DEPENDS="lxterminal"
    1.12 +WANTED="lxterminal"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://lxde.org"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +
    1.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.19 +genpkg_rules()
    1.20 +{
    1.21 +	mkdir -p $fs/usr/share
    1.22 +	cp -a $_pkg/usr/share/locale $fs/usr/share
    1.23 +}
    1.24 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/lxterminal/receipt	Tue Aug 03 22:26:29 2010 +0200
     2.3 @@ -0,0 +1,38 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="lxterminal"
     2.7 +VERSION="0.1.8"
     2.8 +CATEGORY="utilities"
     2.9 +SHORT_DESC="LXDE X Terminal emulator."
    2.10 +MAINTAINER="gokhlayeh@mailoo.org"
    2.11 +DEPENDS="vte gtk+"
    2.12 +BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev"
    2.13 +SUGGESTED="lxterminal-locales"
    2.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.15 +WEB_SITE="http://lxde.org"
    2.16 +WGET_URL="http://downloads.sourceforge.net/project/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20$VERSION/$TARBALL"
    2.17 +
    2.18 +# Rules to configure and make the package.
    2.19 +compile_rules()
    2.20 +{
    2.21 +	cd $src
    2.22 +	./configure \
    2.23 +		--prefix=/usr \
    2.24 +		--infodir=/usr/share/info \
    2.25 +		--mandir=/usr/share/man \
    2.26 +		$CONFIGURE_ARGS &&
    2.27 +	make && make DESTDIR=$PWD/_pkg install
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	mkdir -p $fs/usr
    2.34 +	cp -a $_pkg/usr/bin $fs/usr
    2.35 +	cp -a $_pkg/usr/share $fs/usr
    2.36 +
    2.37 +	# Remove man & locales
    2.38 +	rm -rf $fs/usr/share/man
    2.39 +	rm -rf $fs/usr/share/locale	
    2.40 +}
    2.41 +