summaryrefslogtreecommitdiff
path: root/community/wol
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-18 23:15:18 +0000
committerroot <root@rshg054.dnsready.net>2011-11-18 23:15:18 +0000
commit126af148530f656a2ed192a852477b2ee97d5397 (patch)
tree8ffc6ca622df6bd9d9a17cbacfd394bba287d84b /community/wol
parent029ccb02a25d48cdc39a7e749c17fa8bc9fb84e3 (diff)
Fri Nov 18 23:15:18 UTC 2011
Diffstat (limited to 'community/wol')
-rw-r--r--community/wol/PKGBUILD21
1 files changed, 11 insertions, 10 deletions
diff --git a/community/wol/PKGBUILD b/community/wol/PKGBUILD
index 87bfc7005..1920390a7 100644
--- a/community/wol/PKGBUILD
+++ b/community/wol/PKGBUILD
@@ -1,27 +1,28 @@
-# $Id: PKGBUILD 17446 2010-05-24 10:42:15Z spupykin $
+# $Id: PKGBUILD 58676 2011-11-17 14:54:30Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Anders Bergh <anders1@gmail.com>
# Contributor: Markus Volkmann <mcfock@counterstrike.de>
pkgname=wol
pkgver=0.7.1
-pkgrel=4
+pkgrel=5
arch=('i686' 'x86_64')
-pkgdesc="wol implements Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant."
+pkgdesc="Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant"
license=("GPL")
-depends=(sh)
+depends=()
url="http://ahh.sourceforge.net/wol/"
install=wol.install
source=(http://downloads.sourceforge.net/ahh/wol-$pkgver.tar.gz)
md5sums=('c2fa9d7e771134ac8c89d56b8197d4ca')
build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr
- make || return 1
- make prefix=$startdir/pkg/usr install || return 1
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
+ make
+}
- mv $pkgdir/usr/man $pkgdir/usr/share/ && \
- mv $pkgdir/usr/info $pkgdir/usr/share/ && \
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
rm $pkgdir/usr/share/info/dir
}