summaryrefslogtreecommitdiff
path: root/pcr/omap-u-boot-utils-git
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-03-20 01:49:38 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-03-20 01:49:38 +0100
commite2a84cf4978cf67ae9229152d87410976160b566 (patch)
tree2d9e50089fd3b5daa55acbec6b882aea8efe84fc /pcr/omap-u-boot-utils-git
parent220a347c89039c9f90e68243f4bb8039fb285fb3 (diff)
downloadabslibre-e2a84cf4978cf67ae9229152d87410976160b566.tar.gz
abslibre-e2a84cf4978cf67ae9229152d87410976160b566.tar.bz2
abslibre-e2a84cf4978cf67ae9229152d87410976160b566.zip
pcr: import omap-u-boot-utils-git from AUR
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/omap-u-boot-utils-git')
-rw-r--r--pcr/omap-u-boot-utils-git/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/pcr/omap-u-boot-utils-git/PKGBUILD b/pcr/omap-u-boot-utils-git/PKGBUILD
new file mode 100644
index 000000000..0285796cf
--- /dev/null
+++ b/pcr/omap-u-boot-utils-git/PKGBUILD
@@ -0,0 +1,36 @@
+# Copyright (C) 2020 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+pkgname=omap-u-boot-utils-git
+_pkgname=omap-u-boot-utils
+pkgver=0.2.0.r40.g2a9344a
+pkgrel=1
+pkgdesc="Various tools to communicate with OMAP bootroms to execute code"
+arch=('armv7h' 'i686' 'x86_64')
+url='https://nmenon.github.io/omap-u-boot-utils/'
+license=('GPL2')
+depends=('libusb')
+makedepends=('git')
+_commit=('2a9344ac45f6e4074793182dcaca7b0403dff389')
+source=("git://github.com/nmenon/omap-u-boot-utils#commit=${_commit}")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd "${srcdir}/${_pkgname}"
+ git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
+}
+
+build() {
+ cd "${srcdir}/${_pkgname}"
+ make all usb
+}
+
+package(){
+ cd "${srcdir}/${_pkgname}"
+ install -d -m 755 "${pkgdir}"/usr/bin/
+ install -t "${pkgdir}"/usr/bin/ gpsign pserial pusb tagger ucmd ukermit
+ install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/${_pkgname}/LICENSE
+}