wok annotate lxterminal/receipt @ rev 23943

Up cryptsetup-dev (2.3.4), lzham_codec (1_0_stable1), slitaz-boot-scripts (466), tazlito (527)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 17 10:31:38 2020 +0000 (2020-09-17)
parents 6e8b1bcb30e2
children ee53899c6189
rev   line source
gokhlayeh@5956 1 # SliTaz package receipt.
gokhlayeh@5956 2
gokhlayeh@5956 3 PACKAGE="lxterminal"
Hans-G?nter@21396 4 VERSION="0.3.2"
gokhlayeh@5956 5 CATEGORY="utilities"
Hans-G?nter@21396 6 TAGS="LXDE terminal"
Hans-G?nter@21396 7 SHORT_DESC="LXDE terminal emulator."
gokhlayeh@7034 8 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15379 9 LICENSE="GPL2"
Hans-G?nter@21396 10 WEB_SITE="https://wiki.lxde.org/en/LXTerminal"
Hans-G?nter@21396 11
Hans-G?nter@21396 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21396 13 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
Hans-G?nter@21396 14
gokhlayeh@5956 15 SUGGESTED="lxterminal-locales"
Hans-G?nter@21396 16 DEPENDS="gtk+ vte"
Hans-G?nter@21396 17 BUILD_DEPENDS="gtk+-dev intltool vte-dev vte-terminal"
pascal@15379 18
gokhlayeh@5956 19 # Rules to configure and make the package.
gokhlayeh@5956 20 compile_rules()
gokhlayeh@5956 21 {
Hans-G?nter@21396 22 ./configure \
Hans-G?nter@21396 23 --prefix=/usr \
Hans-G?nter@21396 24 --infodir=/usr/share/info \
Hans-G?nter@21396 25 --mandir=/usr/share/man \
gokhlayeh@5956 26 $CONFIGURE_ARGS &&
Hans-G?nter@21396 27 make -j 1 &&
Hans-G?nter@21396 28 make DESTDIR=$DESTDIR install
gokhlayeh@5956 29 }
gokhlayeh@5956 30
gokhlayeh@5956 31 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@5956 32 genpkg_rules()
gokhlayeh@5956 33 {
gokhlayeh@5956 34 mkdir -p $fs/usr
Hans-G?nter@21396 35
Hans-G?nter@21396 36 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21396 37 cp -a $install/usr/share $fs/usr
gokhlayeh@5956 38
gokhlayeh@5956 39 # Remove man & locales
gokhlayeh@5956 40 rm -rf $fs/usr/share/man
al@17988 41 rm -rf $fs/usr/share/locale
gokhlayeh@5956 42 }