Search Criteria
Package Details: wakeonlan 0.41-5
Git Clone URL: | https://aur.archlinux.org/wakeonlan.git (read-only, click to copy) |
---|---|
Package Base: | wakeonlan |
Description: | Utility for waking up computers using UDP Wake-on-Lan packets |
Upstream URL: | https://github.com/jpoliv/wakeonlan/ |
Keywords: | network tool |
Licenses: | |
Submitter: | None |
Maintainer: | aaronfischer |
Last Packager: | aaronfischer |
Votes: | 78 |
Popularity: | 0.23 |
First Submitted: | 2008-04-29 16:37 |
Last Updated: | 2018-11-05 21:43 |
Latest Comments
1 2 Next › Last »
aaronfischer commented on 2016-02-21 14:47
@DaMastah: Thanks, sorry for that.
DaMastah commented on 2016-02-19 12:04
@aaronfischer : Spyhawk said on a package with a similar error : "Please always update the PKGBUILD, and generate the .SRCINFO file with "makepkg --printsrcinfo > .SRCINFO"."
It would be great if you could do that.
fastgar commented on 2016-02-05 09:23
When trying to install the package i get the following error
:: wakeonlan package(s) failed to install. Check .SRCINFO for mismatching data with PKGBUILD.
i think on the last update you forgot to make a new .SRCINFO with mksrcinfo
aaronfischer commented on 2015-11-22 13:32
Thanks @ClasOfLight, I've fixed the soruce and change it to github.
ClawOfLight commented on 2015-11-19 19:35
The download is broken (again or still, I do not know).
I just get this error:
curl: (9) Server denied you to change to the given directory
aaronfischer commented on 2014-12-17 09:20
I've adopted the package and fixed the download, should work now.
Archer22 commented on 2014-11-07 16:41
At the moment the server where the package is stored is down, and therefore its not possible to install wakeonlan..
giddie commented on 2013-09-16 09:18
A couple of suggestions to tidy this up:
* No need to duplicate entries in "depends" and "makedepends".
* Perl is already in the base group, so no need to specify it at all :)
* "arch" can be "any", because all the installed code is interpreted, not compiled.
* It would look a little nicer if the functions were indented...
Anonymous comment on 2013-05-28 21:51
This pkgbuild worked for me:
# Contributor: Hyperair <hyperair@gmail.com>
pkgname=wakeonlan
pkgver=0.41
pkgrel=3
pkgdesc="Utility for waking up computers using UDP Wake-on-Lan packets"
arch=('i686' 'x86_64')
url="http://gsd.di.uminho.pt/jpo/software/wakeonlan/"
license=('GPL')
depends=(perl)
makedepends=(perl)
source=(http://gsd.di.uminho.pt/jpo/software/wakeonlan/downloads/wakeonlan-${pkgver}.tar.gz)
md5sums=('d3143c5fe92d16196ac853b55dd421b5')
options=(docs)
build() {
cd $srcdir/$pkgname-$pkgver
perl Makefile.PL || return 1
make || return 1
}
package() {
cd $srcdir/$pkgname-$pkgver
install -D -m0755 ${pkgname} $pkgdir/usr/bin/${pkgname} || return 1
install -D -m0644 blib/man1/${pkgname}.1p $pkgdir/usr/share/man/man1p/${pkgname}.1p || return 1
find examples -exec install -D -m0644 '{}' $pkgdir/usr/share/doc/${pkgname}/\{\} \; || return 1
}
qqqqqqqqq9 commented on 2013-04-19 21:55
Hi,
please replace $startdir/pkg with $pkgdir, $startdir/src with $srcdir, and create a package function. The current PKGBUILD creates an empty package with pacman-4.1.
Thanks