Archlinux PKGBUILD added.

This commit is contained in:
oh 2015-10-03 20:19:30 +02:00
parent 6c80f02ef7
commit d2e600a1be
1 changed files with 23 additions and 0 deletions

23
PKGBUILD Normal file
View File

@ -0,0 +1,23 @@
# Maintainer: xo <oh@rotce.de>
pkgname=hashboot-git
pkgver=0.7.4
pkgrel=1
pkgdesc="A utility to check at boottime befor network, if /boot or mbr were manipulated."
arch=('i686' 'x86_64')
url="https://git.tastytea.de/?p=hashboot.git;a=summary"
license=('custom:hugware')
#groups=('')
conflicts=('chkboot' 'mkinitcpio-chkcryptoboot')
depends=('bash' 'coreutils' 'tar' 'which' 'grep' 'gawk' 'util-linux')
#makedepends=('')
source=(git+git://git.tastytea.de/repositories/hashboot.git)
md5sums=('SKIP')
package() {
msg "Copy files"
cd "$srcdir/hashboot"
install -Dm644 initscript.systemd "${pkgdir}/usr/lib/systemd/system/hashboot.service"
install -Dm755 hashboot.sh "${pkgdir}/usr/bin/hashboot"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/HUGWARE"
}