diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-03-29 12:34:13 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-03-29 12:34:13 -0300 |
commit | 3c009b4e012858916634a51300809b12d8752c6d (patch) | |
tree | 5170ae6a3c188fadcbd4d99ad635d367462ae589 | |
parent | 5e299e28beecda2ab3e1fe571e117a261cbbbb94 (diff) | |
download | abslibre-3c009b4e012858916634a51300809b12d8752c6d.tar.gz abslibre-3c009b4e012858916634a51300809b12d8752c6d.tar.bz2 abslibre-3c009b4e012858916634a51300809b12d8752c6d.zip |
gummiboot: adding new package to [libre] repo for rebranding
-rw-r--r-- | libre/gummiboot/PKGBUILD | 44 | ||||
-rw-r--r-- | libre/gummiboot/gummiboot.install | 11 | ||||
-rw-r--r-- | libre/gummiboot/loader.conf | 2 | ||||
-rw-r--r-- | libre/gummiboot/parabola.conf | 7 |
4 files changed, 64 insertions, 0 deletions
diff --git a/libre/gummiboot/PKGBUILD b/libre/gummiboot/PKGBUILD new file mode 100644 index 000000000..8ce0f23cf --- /dev/null +++ b/libre/gummiboot/PKGBUILD @@ -0,0 +1,44 @@ +# $Id$ +# 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> + +pkgname="gummiboot" +pkgver="29" +pkgrel="1.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') +depends=('util-linux') +conflicts=('gummiboot-efi') +provides=('gummiboot-efi') +replaces=('gummiboot-efi') +options=('!strip') +source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz" + 'loader.conf' + 'parabola.conf') +install="gummiboot.install" + +build() { + cd "${srcdir}/${pkgname}-${pkgver}/" + + ./autogen.sh + ./configure --sysconfdir=/etc --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" + + cd "${srcdir}/${pkgname}-${pkgver}/" + make DESTDIR="${pkgdir}" install +} +md5sums=('7e133411b805ce6fb5dd3e3bd08b88a2' + '3d700d13aec5ab1b78a921eaf22e5bfa' + '9f770584795496c0e3409679eaf7be3b') diff --git a/libre/gummiboot/gummiboot.install b/libre/gummiboot/gummiboot.install new file mode 100644 index 000000000..770087361 --- /dev/null +++ b/libre/gummiboot/gummiboot.install @@ -0,0 +1,11 @@ +post_install() { + echo ":: Run '/usr/bin/gummiboot install' to enable gummiboot" +} + +post_upgrade() { + /usr/bin/gummiboot update +} + +pre_remove() { + /usr/bin/gummiboot remove +} diff --git a/libre/gummiboot/loader.conf b/libre/gummiboot/loader.conf new file mode 100644 index 000000000..b8bfb988e --- /dev/null +++ b/libre/gummiboot/loader.conf @@ -0,0 +1,2 @@ +timeout 10 +default parabola diff --git a/libre/gummiboot/parabola.conf b/libre/gummiboot/parabola.conf new file mode 100644 index 000000000..bbb6dddfa --- /dev/null +++ b/libre/gummiboot/parabola.conf @@ -0,0 +1,7 @@ +## This is just an exmaple config file. +## Please edit the paths and kernel parameters according to your system. + +title Parabola GNU/Linux-libre +linux /vmlinuz-linux-libre +initrd /initramfs-linux-libre.img +options root=PARTUUID=XXXX rootfstype=XXXX add_efi_memmap |