opt/u-boot-tools/Pkgfile

21 lines
508 B
Plaintext
Raw Normal View History

2013-10-17 11:46:43 +02:00
# Description: U-Boot tools
# URL: https://www.denx.de/wiki/U-Boot/WebHome
2022-02-18 14:55:31 +01:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: openssl gnutls
2013-10-17 11:46:43 +02:00
name=u-boot-tools
version=2022.04
2013-10-17 11:46:43 +02:00
release=1
2020-11-22 16:41:33 +01:00
source=(https://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2)
2013-10-17 11:46:43 +02:00
build() {
cd u-boot-$version
2014-06-13 09:58:42 +02:00
make sandbox_config
2020-08-12 15:35:54 +02:00
make tools TOOLSUBDIRS=""
2013-10-17 11:46:43 +02:00
install -d -m 0755 $PKG/usr/{bin,share/man/man1}
2013-10-17 11:46:43 +02:00
install -m 0755 tools/mk{,env}image $PKG/usr/bin
install -m 0644 doc/mkimage.1 $PKG/usr/share/man/man1
2021-01-28 16:21:01 +01:00
}