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
22 lines
786 B
Text
22 lines
786 B
Text
pkgname=blobtools
|
|
pkgver=0.0_git20121024
|
|
pkgrel=1
|
|
_commit="6186e33baa10ce6f1c738d7b91eb5153743105af"
|
|
pkgdesc="Tools for unpacking & repacking blobs used for updating 'hidden' partitions on ASUS Transformer"
|
|
url="https://github.com/AndroidRoot/BlobTools"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
source="$pkgname-$_commit.tar.gz::https://github.com/AndroidRoot/BlobTools/archive/$_commit.tar.gz"
|
|
options="!check" # No tests
|
|
builddir="$srcdir/BlobTools-$_commit"
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
for i in blobpack blobunpack; do
|
|
install -Dm755 "$i" "$pkgdir"/usr/bin/"$(basename "$i")"
|
|
done
|
|
}
|
|
|
|
sha512sums="69e1113c1d99f1aa930cc6674d6a0473baf9648c4c3f4da37aa44cb42648a40fe15d0a4a72815baa1118bdca36b0084b4efe82ff75549d233498a5637e98508d blobtools-6186e33baa10ce6f1c738d7b91eb5153743105af.tar.gz"
|