wok annotate lxterminal/receipt @ rev 17988
Update LXDE stuff.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Apr 23 01:34:37 2015 +0300 (2015-04-23) |
parents | 5d53e8ccbc8d |
children | c9e270dd464f |
rev | line source |
---|---|
gokhlayeh@5956 | 1 # SliTaz package receipt. |
gokhlayeh@5956 | 2 |
gokhlayeh@5956 | 3 PACKAGE="lxterminal" |
al@17988 | 4 VERSION="0.2.0" |
gokhlayeh@5956 | 5 CATEGORY="utilities" |
gokhlayeh@5956 | 6 SHORT_DESC="LXDE X Terminal emulator." |
gokhlayeh@7034 | 7 MAINTAINER="gokhlayeh@slitaz.org" |
pascal@15379 | 8 LICENSE="GPL2" |
gokhlayeh@5956 | 9 SUGGESTED="lxterminal-locales" |
gokhlayeh@5956 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
gokhlayeh@5956 | 11 WEB_SITE="http://lxde.org" |
al@17988 | 12 WGET_URL="$SF_MIRROR/lxde/$TARBALL" |
al@17501 | 13 TAGS="terminal" |
gokhlayeh@5956 | 14 |
pascal@15379 | 15 DEPENDS="vte gtk+" |
pascal@15379 | 16 BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev" |
pascal@15379 | 17 |
gokhlayeh@5956 | 18 # Rules to configure and make the package. |
gokhlayeh@5956 | 19 compile_rules() |
gokhlayeh@5956 | 20 { |
gokhlayeh@5956 | 21 ./configure \ |
gokhlayeh@5956 | 22 --prefix=/usr \ |
gokhlayeh@5956 | 23 --infodir=/usr/share/info \ |
gokhlayeh@5956 | 24 --mandir=/usr/share/man \ |
gokhlayeh@5956 | 25 $CONFIGURE_ARGS && |
pascal@15379 | 26 make && make DESTDIR=$DESTDIR install |
gokhlayeh@5956 | 27 } |
gokhlayeh@5956 | 28 |
gokhlayeh@5956 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
gokhlayeh@5956 | 30 genpkg_rules() |
gokhlayeh@5956 | 31 { |
gokhlayeh@5956 | 32 mkdir -p $fs/usr |
pascal@15379 | 33 cp -a $install/usr/bin $fs/usr |
pascal@15379 | 34 cp -a $install/usr/share $fs/usr |
gokhlayeh@5956 | 35 |
gokhlayeh@5956 | 36 # Remove man & locales |
gokhlayeh@5956 | 37 rm -rf $fs/usr/share/man |
al@17988 | 38 rm -rf $fs/usr/share/locale |
gokhlayeh@5956 | 39 } |