wok view iat/receipt @ rev 1425

postgresql: ensure not to overload tux user
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 28 18:45:59 2008 +0000 (2008-09-28)
parents 8c8d1dfb63df
children faa4c6e9600b
line source
1 # SliTaz package receipt.
3 PACKAGE="iat"
4 VERSION="0.1.3"
5 CATEGORY="utilities"
6 SHORT_DESC="iat (Iso9660 Analyzer Tool) converts many types of CD-ROM \
7 image file formats and converting them into ISO-9660."
8 MAINTAINER="chadi.elahmad@gmail.com"
10 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
11 WEB_SITE="http://iat.berlios.de/"
12 WGET_URL="http://download.berlios.de/iat/$TARBALL"
13 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#iat'
15 DEPENDS=""
16 BUILD_DEPENDS=""
18 # Rules to configure and make the package.
19 # The src files are in a folder simply named iat.
20 compile_rules()
21 {
22 cd $src/..
23 if test -d $PACKAGE ; then mv -f $PACKAGE $PACKAGE-$VERSION ; fi
25 cd $src
26 ./configure \
27 --prefix=/usr \
28 --mandir=/usr/share/man \
29 --infodir=/usr/share/info \
30 $CONFIGURE_ARGS && \
31 make && \
32 make DESTDIR=$PWD/_pkg install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/bin
39 cp -a $_pkg/usr/bin $fs/usr
40 }