# Contributor: William Pitcock # Maintainer: William Pitcock pkgname=uboot-mkimage pkgver=2011.12 pkgrel=0 pkgdesc="image bundler for uImage files" url="http://www.denx.de/wiki/U-Boot/" arch="all" license="GPL" depends="" depends_dev="" makedepends="$depends_dev" install="" subpackages="" source="ftp://ftp.denx.de/pub/u-boot/u-boot-$pkgver.tar.bz2" _builddir="$srcdir"/u-boot-$pkgver prepare() { local i cd "$_builddir" for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; esac done } build() { cd "$_builddir" touch include/config.h LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > include/timestamp_autogenerated.h LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> include/timestamp_autogenerated.h make tools || return 1 } package() { cd "$_builddir" install -c -D -m 755 tools/mkimage "$pkgdir"/usr/bin/mkimage } md5sums="7f29b9f6da44d6e46e988e7561fd1d5f u-boot-2011.12.tar.bz2"