PKGBUILDs/core/uboot-mkimage/PKGBUILD
2009-11-12 19:19:01 -06:00

17 lines
440 B
Bash

# Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com>
pkgname=uboot-mkimage
pkgver=2009.08
pkgrel=1
pkgdesc="mkimage binary for making uboot kernel images"
arch=('arm')
license=('GPL' 'LGPL')
source=(ftp://ftp.denx.de/pub/u-boot/u-boot-latest.tar.bz2)
md5sums=('6ff36897a50c7fcd26bc088dc52841c8')
build() {
cd $srcdir/u-boot-2009.08
touch include/config.{h,mk}
make tools
install -Dm755 tools/mkimage $pkgdir/usr/bin/
}