summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: be2d1e41e2f42b820d54a21ec5ee170f77b41afd (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
# Maintainer: lks <lukas dot graetz at web dot de>
pkgname=cbootimage
pkgver=1.6
pkgrel=1
pkgdesc="Tools to dump and generate boot config table on Tegra devices"
arch=('i686' 'x86_64' 'armv7h')
license=('GPL')
url="http://http.download.nvidia.com/tegra-public-appnotes/bct-overview.html"
makedepends=('automake' 'autoconf')
source=('cbootimage.tar')
source=("https://github.com/NVIDIA/cbootimage/archive/v${pkgver}.tar.gz")
sh256sums=('a15739c9e2ca4f582de56c4c795c057d7b322224edd65228bdd725dfdd3aa78c')


build() {
    cd "${pkgname}-${pkgver}"
    autoreconf --install --symlink
    ./configure --prefix=/usr
}

package() {
    cd "${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
}