wok view aterm/receipt @ rev 19272

xz: enable lzma update
author Richard Dunbar <mojo@slitaz.org>
date Mon Jul 04 11:33:24 2016 -0400 (2016-07-04)
parents 0c85455b2f3b
children 11b5e93cb5f2
line source
1 # SliTaz package receipt.
3 PACKAGE="aterm"
4 VERSION="1.0.1"
5 CATEGORY="misc"
6 SHORT_DESC="terminal emulator"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://aterm.sourceforge.net"
11 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/aterm/$TARBALL"
12 TAGS="terminal"
13 HOST_ARCH="i486 arm"
15 DEPENDS="xorg-libSM xorg-libXext"
16 BUILD_DEPENDS="xorg-libSM-dev xorg-libXext-dev xorg-libXt-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 case "$ARCH" in
22 arm*)
23 export PATH=/cross/arm/tools/arm-slitaz-linux-gnueabi/bin:$PATH
24 esac
25 ./configure $CONFIGURE_ARGS &&
26 make && make install
28 cook_compress_manpages
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }