mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
added alarm/cbootimage
This commit is contained in:
parent
7ffae6be4d
commit
348ab85495
1 changed files with 33 additions and 0 deletions
33
alarm/cbootimage/PKGBUILD
Normal file
33
alarm/cbootimage/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Tegra BCT and bootable flash image generator/compiler
|
||||
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
|
||||
buildarch=4
|
||||
|
||||
pkgname=cbootimage
|
||||
pkgver=r63.024108e
|
||||
pkgrel=1
|
||||
pkgdesc="Tegra BCT and bootable flash image generator/compiler"
|
||||
arch=('armv7h')
|
||||
url="https://github.com/NVIDIA/cbootimage.git"
|
||||
makedepends=('git')
|
||||
license=('GPL')
|
||||
source=("git+https://github.com/NVIDIA/cbootimage.git")
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd cbootimage
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd cbootimage
|
||||
|
||||
./autogen.sh --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd cbootimage
|
||||
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
Loading…
Reference in a new issue