summaryrefslogtreecommitdiff
path: root/community/wol
diff options
context:
space:
mode:
Diffstat (limited to 'community/wol')
-rw-r--r--community/wol/PKGBUILD28
-rw-r--r--community/wol/wol.install20
2 files changed, 0 insertions, 48 deletions
diff --git a/community/wol/PKGBUILD b/community/wol/PKGBUILD
deleted file mode 100644
index 1920390a7..000000000
--- a/community/wol/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $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=5
-arch=('i686' 'x86_64')
-pkgdesc="Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant"
-license=("GPL")
-depends=()
-url="http://ahh.sourceforge.net/wol/"
-install=wol.install
-source=(http://downloads.sourceforge.net/ahh/wol-$pkgver.tar.gz)
-md5sums=('c2fa9d7e771134ac8c89d56b8197d4ca')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
- rm $pkgdir/usr/share/info/dir
-}
diff --git a/community/wol/wol.install b/community/wol/wol.install
deleted file mode 100644
index 500ea57c0..000000000
--- a/community/wol/wol.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(wol.info)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file.gz $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
- done
-}