blob: b1241b6e89c5e0c4f6556c32edf4655204f25ba9 (
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.09
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="259017613713c01bd9bcc82edc153e4f u-boot-2011.09.tar.bz2"
|