# HG changeset patch # User Antoine Bodin # Date 1280867189 -7200 # Node ID 6a8543ef36047fc6c6f3ecb98046bcec4553e35e # Parent 02eb51f3faf901814fdfe7c05207176ec410ca3d Add: lxterminal 0.1.8 diff -r 02eb51f3faf9 -r 6a8543ef3604 lxterminal-locales/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxterminal-locales/receipt Tue Aug 03 22:26:29 2010 +0200 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="lxterminal-locales" +VERSION="0.1.8" +CATEGORY="utilities" +SHORT_DESC="LXDE X Terminal emulator locales." +MAINTAINER="gokhlayeh@mailoo.org" +DEPENDS="lxterminal" +WANTED="lxterminal" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://lxde.org" + +# Rules to configure and make the package. + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/share/locale $fs/usr/share +} + diff -r 02eb51f3faf9 -r 6a8543ef3604 lxterminal/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lxterminal/receipt Tue Aug 03 22:26:29 2010 +0200 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="lxterminal" +VERSION="0.1.8" +CATEGORY="utilities" +SHORT_DESC="LXDE X Terminal emulator." +MAINTAINER="gokhlayeh@mailoo.org" +DEPENDS="vte gtk+" +BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev" +SUGGESTED="lxterminal-locales" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://lxde.org" +WGET_URL="http://downloads.sourceforge.net/project/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20$VERSION/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share $fs/usr + + # Remove man & locales + rm -rf $fs/usr/share/man + rm -rf $fs/usr/share/locale +} +