21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
# Description: U-Boot tools
|
|
# URL: https://www.denx.de/wiki/U-Boot/WebHome
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: gnutls openssl swig
|
|
|
|
name=u-boot-tools
|
|
version=2023.01
|
|
release=1
|
|
source=(https://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd u-boot-$version
|
|
|
|
make sandbox_config
|
|
make tools 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
|
|
}
|