a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
21 lines
692 B
Text
21 lines
692 B
Text
pkgname=dtbtool-exynos
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Tool for compiling a dtb.img for Exynos SOC"
|
|
url="https://forum.xda-developers.com/android/development/exynos-compiling-dtb-img-linux-t3700690"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="libfdt"
|
|
makedepends="dtc-dev"
|
|
options="!check" # There is no testsuite
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/dsankouski/dtbtool-exynos/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
install -D -m755 "$builddir"/dtbTool-exynos \
|
|
"$pkgdir"/usr/bin/dtbTool-exynos
|
|
}
|
|
sha512sums="e116431260c365db75f34332f11cd8fa81c80e027f08ac0dd556cd9f0a30e640ecb22a98e4db50d35ff680de9c4a5777df8b0c2eda4300067d34e9dcb1147537 dtbtool-exynos-1.0.0.tar.gz"
|