wok view lxterminal/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents c73f683146cf
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="lxterminal"
4 VERSION="0.2.0"
5 CATEGORY="utilities"
6 SHORT_DESC="LXDE terminal emulator"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL2"
9 SUGGESTED="lxterminal-locales"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://lxde.org"
12 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
13 TAGS="LXDE terminal"
15 DEPENDS="vte gtk+"
16 BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share $fs/usr
36 # Remove man & locales
37 rm -rf $fs/usr/share/man
38 rm -rf $fs/usr/share/locale
39 }