summaryrefslogtreecommitdiff
path: root/pcr/omap-u-boot-utils-git/PKGBUILD
blob: 3599a9b780e08aab19c8e962833daa4882902e15 (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
# 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 CC0 1.0 License.
# Maintainer: Parabola Hackers <dev@lists.parabola.nu>

pkgname=omap-u-boot-utils-git
_pkgname=omap-u-boot-utils
pkgver=0.2.0.r40.g2a9344a
pkgrel=2
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 sysrq tagger ucmd ukermit
  install -D -m644 COPYING "${pkgdir}"/usr/share/licenses/${_pkgname}/LICENSE
}