wok view gpm/receipt @ rev 2270

squirrelmail-shared_calendars: fix src path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 18 11:38:05 2009 +0000 (2009-02-18)
parents c9eb9aa2daa4
children dbf873bf74a8
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"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --sysconfdir=/etc $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/sbin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a stuff/* $fs
29 }