opt/u-boot-tools/Pkgfile

21 lines
500 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
2020-08-12 15:35:54 +02:00
# Depends on: openssl
2013-10-17 11:46:43 +02:00
name=u-boot-tools
2021-10-05 15:24:34 +02:00
version=2021.10
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
}