wok view srcpd/receipt @ rev 12411

Up: slitaz-configs (5.0) Buch of new change and less deps (use lxde meta packages in flavors :-)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 20 18:14:53 2012 +0200 (2012-04-20)
parents 3e5f4a16c6dd
children 3b63ed3f8a01
line source
1 # SliTaz package receipt.
3 PACKAGE="srcpd"
4 VERSION="2.1.1"
5 CATEGORY="games"
6 SHORT_DESC="Simple Railroad Command Protocl Daemon."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base libxml2 zlib"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://srcpd.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/srcpd.conf"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 ./configure $CONFIGURE_ARGS \
20 --sysconfdir=/etc &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/sbin $fs/usr
30 cp -a $_pkg/etc $fs
31 }