void-packages/srcpkgs/uboot-mkimage/template
2013-02-19 15:53:18 +01:00

25 lines
650 B
Plaintext

# Template file for 'uboot-mkimage'
pkgname=uboot-mkimage
version=2013.01
revision=1
wrksrc="u-boot-${version}"
short_desc="The U-Boot mkimage utility"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2"
homepage="http://www.denx.de/wiki/U-Boot/WebHome"
distfiles="http://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2"
checksum=9ca0f35f4394281312d03c581e24a263cf3e0d9703f15103ff2ead5e5aa43f90
do_build() {
if [ -n "$XBPS_CROSS_TRIPLET" ]; then
make HOSTSTRIP=: HOSTCC="$XBPS_CROSS_TRIPLET-gcc" tools
else
make HOSTSTRIP=: tools
fi
}
do_install() {
vinstall tools/mkimage 755 usr/bin
vinstall doc/mkimage.1 644 usr/share/man/man1
}