wok annotate lxterminal/receipt @ rev 20707

Up tinc (1.0.35)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 06 15:24:48 2019 +0100 (2019-02-06)
parents c9e270dd464f
children 211713be9cab
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"
al@17992 6 SHORT_DESC="LXDE 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"
pascal@20671 11 WEB_SITE="https://lxde.org"
al@17988 12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
al@17992 13 TAGS="LXDE 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 }