wok-next view dtach/receipt @ rev 13193
c_icap-dev, clamav-dev, collectd-apache, collectd-dev, gdal-bin, gdal-datas, gdal-dev, geos-dev, gnome-keyring-dev, gnome-vfs-monikers-dev, libgdal, libgnomeui-dev, memcached-dev, postgis-gui, proj-dev, sarg-php, swfdec-dev, xfe-extras: remove unused TARBALL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 04 22:10:01 2012 +0200 (2012-08-04) |
parents | |
children | eb8067417980 |
line source
1 # SliTaz package receipt.
3 PACKAGE="dtach"
4 VERSION="0.8"
5 CATEGORY="system-tools"
6 SHORT_DESC="Emulates the detach feature of screen."
7 MAINTAINER="christophe.paris@free.fr"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://dtach.sourceforge.net/"
10 WGET_URL="http://downloads.sourceforge.net/dtach/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS &&
18 make || return 1
19 # no install rules, let's do it by hand
20 mkdir -p $PWD/_pkg/usr/bin $PWD/_pkg/usr/share/man/man1
21 cp dtach $PWD/_pkg/usr/bin
22 cp dtach.1 $PWD/_pkg/usr/share/man/man1
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $_pkg/usr/bin $fs/usr
30 }