summaryrefslogtreecommitdiffstats
path: root/main/uboot-mkimage/APKBUILD
blob: 0585603f9e3bd56fce8747f7b77b66860ff459c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
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"