wok view aterm/receipt @ rev 2813

Qt4-dev update to 4.5.0
author Allan Pinto <allan316@gmail.com>
date Wed Apr 29 10:22:47 2009 +0000 (2009-04-29)
parents f08ead2d5191
children f4fd0777003f
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"
9 BUILD_DEPENDS="xorg-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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 strip -s $fs/usr/bin/*
30 }