diff options
author | James Meyer <james.meyer@operamail.com> | 2014-08-16 17:53:47 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2014-08-16 17:59:25 (GMT) |
commit | b19d9dc77d73e4a9c5b880f09e3db2b9df7cb75a (patch) | |
tree | bd17856ef9f5439a4fc57c28394a5040fa785fdb /abs/extra/nvram-wakup/PKGBUILD | |
parent | 152cc5390f1c1ecbd12fe3117b0119a2266b2383 (diff) | |
download | linhes_pkgbuild-b19d9dc77d73e4a9c5b880f09e3db2b9df7cb75a.zip linhes_pkgbuild-b19d9dc77d73e4a9c5b880f09e3db2b9df7cb75a.tar.gz linhes_pkgbuild-b19d9dc77d73e4a9c5b880f09e3db2b9df7cb75a.tar.bz2 |
nvram-wakeup: recompile for bin changes
refs #961
Diffstat (limited to 'abs/extra/nvram-wakup/PKGBUILD')
-rwxr-xr-x | abs/extra/nvram-wakup/PKGBUILD | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/abs/extra/nvram-wakup/PKGBUILD b/abs/extra/nvram-wakup/PKGBUILD index c434716..494b861 100755 --- a/abs/extra/nvram-wakup/PKGBUILD +++ b/abs/extra/nvram-wakup/PKGBUILD @@ -1,16 +1,27 @@ -pkgname=nvram-wakup +# Contributor: Andreas Baumann <abaumann@yahoo.com> + +pkgname=nvram-wakeup pkgver=1.1 -pkgrel=1 -pkgdesc="set the wakeup time of the localpc" -license="GPL" +pkgrel=2 +pkgdesc="Reads and writes the WakeUp time in the BIOS." arch=(i686 x86_64) -url="http://sourceforge.net/projects/nvram-wakeup/" -source=("http://downloads.sourceforge.net/project/nvram-wakeup/nvram-wakup-1.1.tar.gz?use_mirror=kent") +url="http://sourceforge.net/projects/nvram-wakeup" +license="GPL" +depends=('bash') +source=(http://downloads.sourceforge.net/project/nvram-wakeup/nvram-wakup-${pkgver}.tar.gz) +md5sums=('ebd6e276167ba4351ecb1ea2bd368422') +options=('!docs') build() { - cd $startdir/src/$pkgname-$pkgver - make || return 1 - make prefix=$startdir/pkg/usr install -} + cd $srcdir/nvram-wakup-$pkgver -md5sums=('ebd6e276167ba4351ecb1ea2bd368422') + # standard Makefile variables (DESTDIR and prefix) + sed -i 's@${prefix}@${DESTDIR}${prefix}@g' Makefile + # FHS compliant location of man pages is /usr/share/man, not /usr/man + sed -i 's@${DESTDIR}${prefix}/man@${DESTDIR}${prefix}/share/man@g' Makefile + sed -i 's|/sbin$|/bin|g' Makefile + + + make || return 1 + make DESTDIR=$pkgdir prefix=/usr install +} |