PKGBUILDs/core/uboot-mkimage/PKGBUILD

19 lines
468 B
Bash
Raw Normal View History

2009-11-08 04:33:32 +00:00
# Maintainer: Dominik Schemmel <dominik.schemmel@googlemail.com>
pkgname=uboot-mkimage
2009-11-13 01:19:01 +00:00
pkgver=2009.08
pkgrel=1
2009-11-08 04:33:32 +00:00
pkgdesc="mkimage binary for making uboot kernel images"
arch=('arm')
license=('GPL' 'LGPL')
2009-11-13 01:19:01 +00:00
source=(ftp://ftp.denx.de/pub/u-boot/u-boot-latest.tar.bz2)
2009-11-13 02:58:05 +00:00
md5sums=('cd4788ea1c6ac4f9b100b888a1063a6b')
2009-11-08 04:33:32 +00:00
build() {
2009-11-13 01:19:01 +00:00
cd $srcdir/u-boot-2009.08
cp -R /usr/include/* ./*
2009-11-13 01:19:01 +00:00
touch include/config.{h,mk}
make tools
install -Dm755 tools/mkimage $pkgdir/usr/bin/
2009-11-08 04:33:32 +00:00
}