33 lines
754 B
Bash
33 lines
754 B
Bash
# Template file for 'usbarmory-uboot'
|
|
pkgname=usbarmory-u-boot
|
|
version=2015.04
|
|
revision=3
|
|
wrksrc="u-boot-$version"
|
|
hostmakedepends="uboot-mkimage bc"
|
|
short_desc="USB armory U-Boot files for SD booting"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="https://github.com/hardkernel/u-boot"
|
|
distfiles="ftp://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2"
|
|
checksum="0a1a70df586655f527befa6f12e184e96ed61b126e5a567382321b17200f5d60"
|
|
|
|
only_for_archs="armv7l armv7l-musl"
|
|
|
|
do_configure() {
|
|
make distclean
|
|
make usbarmory_config
|
|
}
|
|
|
|
do_build() {
|
|
unset CFLAGS CXXFLAGS LDFLAGS
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
make ARCH=arm CROSS_COMPILE=${XBPS_CROSS_TRIPLET}-
|
|
else
|
|
make ARCH=arm
|
|
fi
|
|
}
|
|
|
|
do_install() {
|
|
vinstall u-boot.imx 600 boot
|
|
}
|