wok view gpm/receipt @ rev 2765

Add printer drivers: hplip, gutneprint, foomatic, pnm2ppa
author Rohit Joshi <jozee@slitaz.org>
date Sun Apr 26 16:04:40 2009 +0000 (2009-04-26)
parents 1428395b4afe
children e8163fc4cb28
line source
1 # SliTaz package receipt.
3 PACKAGE="gpm"
4 VERSION="1.20.5"
5 CATEGORY="misc"
6 SHORT_DESC="Mouse server for console."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="ftp://ftp.linux.it/pub/People/rubini/$PACKAGE"
10 WGET_URL="ftp://ftp.linux.it/pub/People/rubini/$PACKAGE/$TARBALL"
11 BUILD_DEPENDS="gawk"
12 DEPENDS="ncurses"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/sbin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a stuff/* $fs
30 }