mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
18 lines
468 B
Bash
18 lines
468 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=('cd4788ea1c6ac4f9b100b888a1063a6b')
|
|
|
|
build() {
|
|
cd $srcdir/u-boot-2009.08
|
|
cp -R /usr/include/* ./*
|
|
touch include/config.{h,mk}
|
|
make tools
|
|
install -Dm755 tools/mkimage $pkgdir/usr/bin/
|
|
}
|