diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/wol | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/wol')
-rw-r--r-- | community/wol/PKGBUILD | 28 | ||||
-rw-r--r-- | community/wol/wol.install | 20 |
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 -} |