opt/u-boot-tools/Pkgfile

24 lines
626 B
Plaintext
Raw Normal View History

2013-10-17 11:46:43 +02:00
# Description: U-Boot tools
# URL: http://www.denx.de/wiki/U-Boot/WebHome
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on:
name=u-boot-tools
2014-01-22 11:20:03 +01:00
version=2014.01
2013-10-17 11:46:43 +02:00
release=1
source=(ftp://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2)
build() {
cd u-boot-$version
# use custom compiler flags
sed -e "/^HOSTCFLAGS/ s/-O2/\$(CUSTOMCFLAGS)/" -i config.mk
make V=1 tools CUSTOMCFLAGS="$CFLAGS" TOOLSUBDIRS=""
install -d -m 0755 $PKG/usr/{bin,man/man1}
install -m 0755 tools/mk{,env}image $PKG/usr/bin
install -m 0644 doc/mkimage.1 $PKG/usr/man/man1
}