updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / uboot-mkimage / PKGBUILD
blobe0f460cff94792477e0946d2129f40beab6b1cd7
1 # Contributor: Philipp Schrader <philipp.schrader+arch@gmail.com>
2 pkgname=uboot-mkimage
3 pkgver=1.3.2
4 pkgrel=1
5 pkgdesc="U-Boot mkimage utility, which encapsulates a compressed uImage Linux kerel image with header information, CRC32 checksum, etc, for use with the U-Boot bootloader"
6 arch=('i686' 'x86_64')
7 url="http://www.denx.de/wiki/U-Boot/WebHome"
8 license=('GPL2' 'custom')
9 source=(ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver}.tar.bz2)
11 build() {
12   cd "$srcdir/u-boot-${pkgver}/tools"
14   # Remove unnecessary include lines from the Makefile
15   sed -i 226d Makefile
16   sed -i 109d Makefile
18   # Build everything (Replace some default values that were originally
19   # defined in the lines removed above)
20   make CC=gcc SRCTREE=../ STRIP=strip mkimage || return 1
22   # Since there's no install target, create our own method
23   install -d "$pkgdir/usr/bin"
24   install -m 755 -t "$pkgdir/usr/bin" mkimage
27 md5sums=('78b1c2722d3907b5fae2cd219dbaf927')