summaryrefslogtreecommitdiff
path: root/libre/gummiboot/PKGBUILD
blob: bd697b3f6f0526226de9cee73d8b7f246fed821a (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# $Id: PKGBUILD 202399 2013-12-21 16:55:19Z tomegun $
# Maintainer: Tom Gundersen <teg@jklm.no>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)>
# Contributor:  Mantas Mikulėnas <grawity@gmail.com>
# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>

pkgname="gummiboot"
pkgver="41"
pkgrel="1"
pkgdesc="Simple text-mode UEFI Boot Manager (Parabola rebranded)"
url="http://freedesktop.org/wiki/Software/gummiboot"
arch=('x86_64' 'i686' 'mips64el')
license=('LGPL2.1')
makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
depends=('util-linux')
conflicts=('gummiboot-efi')
provides=('gummiboot-efi')
replaces=('gummiboot-efi')
options=('!strip' '!makeflags')
source=("git://anongit.freedesktop.org/${pkgname}#commit=ba731cee"
        'loader.conf'
        'parabola.conf'
        'splash-parabola.bmp')
install="gummiboot.install"
md5sums=('SKIP'
         '3d700d13aec5ab1b78a921eaf22e5bfa'
         '36ee74767ac8734dede1cbd0f4f275d7'
         'c146ea0e16fff867164e113c48c91fff')

build() {
	cd ${srcdir}/${pkgname}

	./autogen.sh
	./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib --libexecdir=/usr/lib --libdir=/usr/lib
	
	make
}

package() {
	## Install gummiboot example configuration files (can go away with systemd's kernel-install)
	install -D -m0644 "${srcdir}/loader.conf" "${pkgdir}/usr/lib/gummiboot/loader/loader.conf"
	install -D -m0644 "${srcdir}/parabola.conf" "${pkgdir}/usr/lib/gummiboot/loader/entries/parabola.conf"

	## ship an Parabola GNU/Linux-libre boot splash (still has to be dropped in manually to take effect)
	install -D -m0644 "${srcdir}/splash-parabola.bmp" "${pkgdir}/usr/lib/gummiboot/splash-parabola.bmp"

	cd ${srcdir}/${pkgname}

	make DESTDIR="${pkgdir}" install
}