blob: 299d94801b0dc614432149d0a13ba4dd11f629db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Michael Lass <bevan@bi-co.net>
# Contributor: Max Roder <maxroder@web.de>
# This PKGBUILD is maintained on github:
# https://github.com/michaellass/AUR
pkgname=grml-rescueboot
pkgver=0.6.2
pkgrel=1
pkgdesc="grub2 script to add grml iso images to the grub2 boot menu"
url="http://wiki.grml.org/doku.php?id=rescueboot"
arch=(any)
license=(GPL-2.0-or-later)
depends=(grub)
install=grml-rescueboot.install
backup=(etc/default/grml-rescueboot)
source=("http://deb.grml.org/pool/main/g/${pkgname}/${pkgname}_${pkgver}.tar.xz")
sha256sums=('30b42da8e1e23f105ab0f92df70cdd2f93a30342b2525af351f3aed0af01781f')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -Dm755 42_grml ${pkgdir}/etc/grub.d/42_grml
install -Dm644 etc/default/${pkgname} ${pkgdir}/etc/default/${pkgname}
install -d ${pkgdir}/boot/grml
}
|