bc4aed7d9c
This makes abootimg usable for newer devices which can potentially have no ramdisk starting with Android 7. Additionally fixes building the package from source.
22 lines
674 B
Bash
22 lines
674 B
Bash
# Template file for 'abootimg'
|
|
pkgname=abootimg
|
|
version=0.6.20160512
|
|
revision=3
|
|
_commit="1ebeb393252ab5aeed62e34bc439b6728444f06e"
|
|
wrksrc="abootimg-$_commit"
|
|
build_style=gnu-makefile
|
|
makedepends="libblkid-devel"
|
|
short_desc="Manipulate Android Boot Images"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://gitorious.org/ac100/abootimg"
|
|
distfiles="https://gitlab.com/ajs124/abootimg/-/archive/$_commit/$_commit.tar.gz"
|
|
checksum=9f6d84b9d1bf9404168145f59754608c7e568138510fb638467c6b822e94ca07
|
|
|
|
do_install() {
|
|
local BIN
|
|
for BIN in abootimg abootimg-pack-initrd abootimg-unpack-initrd; do
|
|
vbin $BIN
|
|
done
|
|
vman debian/abootimg.1
|
|
}
|