diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:16 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:11:16 +0200 |
| commit | ee04e6126808a9e20b85fc30f5b71b34099eefc5 (patch) | |
| tree | 2110d4dea547772e8b4d2d570ea829947f596b9c | |
| parent | 6a9d4bece7ae8397a34fab825e58e85dae8f3aa7 (diff) | |
| parent | 070fb0efb564ff00487b303dfddc47f85ec08be8 (diff) | |
Add 'aur/libreboot/' from commit '070fb0efb564ff00487b303dfddc47f85ec08be8'
git-subtree-dir: aur/libreboot
git-subtree-mainline: 6a9d4bece7ae8397a34fab825e58e85dae8f3aa7
git-subtree-split: 070fb0efb564ff00487b303dfddc47f85ec08be8
| -rw-r--r-- | aur/libreboot/.SRCINFO | 15 | ||||
| -rw-r--r-- | aur/libreboot/PKGBUILD | 29 |
2 files changed, 44 insertions, 0 deletions
diff --git a/aur/libreboot/.SRCINFO b/aur/libreboot/.SRCINFO new file mode 100644 index 0000000..a80220d --- /dev/null +++ b/aur/libreboot/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = libreboot + pkgdesc = A free BIOS/UEFI replacement for your computer + pkgver = 20150208 + pkgrel = 2 + url = http://libreboot.org + arch = x86_64 + arch = i686 + arch = armv7l + license = GPL + provides = libreboot + source = http://www.mirrorservice.org/sites/libreboot.org/release/20150208/libreboot_bin.tar.xz + sha256sums = 21649115f15b49657e8232337ed996aed5ef5a6e48412fbf834b83f996472f01 + +pkgname = libreboot + diff --git a/aur/libreboot/PKGBUILD b/aur/libreboot/PKGBUILD new file mode 100644 index 0000000..be523f8 --- /dev/null +++ b/aur/libreboot/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=libreboot +pkgver=20150208 +pkgrel=2 +pkgdesc="A free BIOS/UEFI replacement for your computer" +arch=('x86_64' 'i686' 'armv7l') +url="http://libreboot.org" +license=(GPL) +provides=('libreboot') +source=("http://www.mirrorservice.org/sites/libreboot.org/release/$pkgver/libreboot_bin.tar.xz") +sha256sums=('21649115f15b49657e8232337ed996aed5ef5a6e48412fbf834b83f996472f01') + + +package() { + mkdir -p "$pkgdir/usr/bin" + install -Dm755 "$srcdir/libreboot_bin/cbfstool/$CARCH/cbfstool" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/cbfstool/$CARCH/rmodtool" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/flashrom/$CARCH/flashrom" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/ich9deblob/$CARCH/ich9deblob" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/ich9deblob/$CARCH/ich9gen" "$pkgdir/usr/bin/" + if [ $CARCH != "armv7l" ]; then + install -Dm755 "$srcdir/libreboot_bin/bucts/$CARCH/bucts" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/cbmem/$CARCH/cbmem" "$pkgdir/usr/bin/" + install -Dm755 "$srcdir/libreboot_bin/nvramtool/$CARCH/nvramtool" "$pkgdir/usr/bin/" + fi +} + +# vim:set ts=2 sw=2 et: |
