opt/u-boot-tools/Pkgfile
2016-11-15 09:57:59 +01:00

25 lines
659 B
Plaintext

# 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
version=2016.11
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 Makefile
make sandbox_config
make V=1 tools CUSTOMCFLAGS="$CFLAGS" TOOLSUBDIRS=""
install -d -m 0755 $PKG/usr/{bin,share/man/man1}
install -m 0755 tools/mk{,env}image $PKG/usr/bin
install -m 0644 doc/mkimage.1 $PKG/usr/share/man/man1
}