wok-undigest annotate wol/receipt @ rev 173

Removed hydrogen and depends. There in wok now.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 13:59:15 2010 +0000 (2010-10-19)
parents
children 735ba2a2af34
rev   line source
erjo@24 1 # SliTaz package receipt.
erjo@24 2
erjo@24 3 PACKAGE="wol"
erjo@24 4 VERSION="0.7.1"
erjo@24 5 CATEGORY="network"
erjo@24 6 SHORT_DESC="wol implements Wake On LAN functionality in a small program."
erjo@24 7 MAINTAINER="l.lemarinel@gmail.com"
erjo@24 8 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
erjo@24 9 WGET_URL="$SF_MIRROR/ahh/$TARBALL"
erjo@24 10 BUILD_DEPENDS=""
erjo@24 11 DEPENDS=""
erjo@24 12
erjo@24 13 # Rules to configure and make the package.
erjo@24 14 compile_rules()
erjo@24 15 {
erjo@24 16 cd $src
erjo@24 17 ./configure --bindir=/usr/bin \
erjo@24 18 --sbindir=/usr/bin \
erjo@24 19 --prefix=/usr
erjo@24 20 make
erjo@24 21 make DESTDIR=$PWD/_pkg install
erjo@24 22 }
erjo@24 23
erjo@24 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@24 25 genpkg_rules()
erjo@24 26 {
erjo@24 27 mkdir -p $fs/usr
erjo@24 28 cp -a $_pkg/usr/bin $fs/usr
erjo@24 29 }