wok-4.x annotate srcpd/receipt @ rev 8323
tazdev: add experimental
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Feb 01 22:09:33 2011 +0100 (2011-02-01) |
parents | 3b32c17e2f44 |
children | 3e5f4a16c6dd |
rev | line source |
---|---|
rcx@3299 | 1 # SliTaz package receipt. |
rcx@3299 | 2 |
rcx@3299 | 3 PACKAGE="srcpd" |
rcx@6011 | 4 VERSION="2.1.1" |
rcx@3299 | 5 CATEGORY="games" |
rcx@3299 | 6 SHORT_DESC="Simple Railroad Command Protocl Daemon." |
rcx@3299 | 7 MAINTAINER="rcx@zoominternet.net" |
rcx@3299 | 8 DEPENDS="glibc-base libxml2 zlib" |
rcx@3299 | 9 BUILD_DEPENDS="slitaz-toolchain libxml2-dev zlib-dev" |
rcx@3299 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
rcx@3299 | 11 WEB_SITE="http://srcpd.sourceforge.net/" |
rcx@3299 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
rcx@3299 | 13 CONFIG_FILES="/etc/srcpd.conf" |
rcx@3299 | 14 |
rcx@3299 | 15 # Rules to configure and make the package. |
rcx@3299 | 16 compile_rules() |
rcx@3299 | 17 { |
rcx@3299 | 18 cd $src |
rcx@3299 | 19 |
rcx@3299 | 20 ./configure \ |
rcx@3299 | 21 --prefix=/usr \ |
rcx@3299 | 22 --infodir=/usr/share/info \ |
rcx@3299 | 23 --mandir=/usr/share/man \ |
rcx@3299 | 24 --sysconfdir=/etc \ |
rcx@3299 | 25 $CONFIGURE_ARGS && |
rcx@3299 | 26 make && |
rcx@3299 | 27 make DESTDIR=$PWD/_pkg install |
rcx@3299 | 28 } |
rcx@3299 | 29 |
rcx@3299 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3299 | 31 genpkg_rules() |
rcx@3299 | 32 { |
rcx@3299 | 33 mkdir -p $fs/usr |
rcx@3299 | 34 cp -a $_pkg/usr/sbin $fs/usr |
rcx@3299 | 35 cp -a $_pkg/etc $fs |
rcx@3299 | 36 } |