diff --git a/srcpkgs/usbarmory-u-boot/template b/srcpkgs/usbarmory-u-boot/template new file mode 100644 index 00000000000..f579f126612 --- /dev/null +++ b/srcpkgs/usbarmory-u-boot/template @@ -0,0 +1,33 @@ +# Template file for 'usbarmory-uboot' +pkgname=usbarmory-u-boot +version=2015.04 +revision=1 +wrksrc="u-boot-$version" +hostmakedepends="uboot-mkimage" +short_desc="USB armory U-Boot files for SD booting" +maintainer="Enno Boland " +license="GPL-2" +homepage="https://github.com/hardkernel/u-boot" +distfiles="http://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2" +checksum="0a1a70df586655f527befa6f12e184e96ed61b126e5a567382321b17200f5d60" + +only_for_archs="armv7l" + +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 +}