wok view aterm/receipt @ rev 8527

Fix: fixed typo in a depend in aterm.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Feb 12 19:37:18 2011 +0000 (2011-02-12)
parents 73242cce68d2
children 02bbaa9d12ba
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 DEPENDS="xorg-libSM xorg-libXext"
9 BUILD_DEPENDS="xorg-libSM-dev xorg-libXext-dev xorg-libXt-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://aterm.sourceforge.net"
12 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/aterm/$TARBALL"
13 TAGS="terminal"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 strip -s $fs/usr/bin/*
31 }