diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -1,24 +1,23 @@ -# U-Boot: Pine64 +# U-Boot: Pinebook, based on Pine64 PKGBUILD # Maintainer: Dan Johansen <strit@manjaro.org> # Contributor: Kevin Mihelich <kevin@archlinuxarm.org> pkgname=uboot-pinebook -pkgver=2020.07 +pkgver=2020.10 pkgrel=1 _tfaver=2.3 -pkgdesc="U-Boot for Pine64" +pkgdesc="U-Boot for Pinebook" arch=('aarch64') url='http://www.denx.de/wiki/U-Boot/WebHome' license=('GPL') makedepends=('bc' 'git' 'python' 'swig' 'dtc') -backup=('boot/extlinux/extlinux.conf') +provides=('uboot') +conflicts=('uboot') install=${pkgname}.install source=("ftp://ftp.denx.de/pub/u-boot/u-boot-${pkgver/rc/-rc}.tar.bz2" - "https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-$_tfaver.tar.gz" - 'extlinux.conf') -md5sums=('86e51eeccd15e658ad1df943a0edf622' - '628a32a3c3b3f0c567d1ea6ee5582807' - '7e6fbff584c11762048d9aecdc50b075') + "https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-$_tfaver.tar.gz") +md5sums=('14656f08aa73a8dbbde2424fe78bbe3b' + '628a32a3c3b3f0c567d1ea6ee5582807') build() { unset CFLAGS CXXFLAGS CPPFLAGS LDFLAGS @@ -43,5 +42,4 @@ package() { mkdir -p "${pkgdir}"/boot/extlinux cp u-boot-sunxi-with-spl-pinebook.bin "${pkgdir}"/boot - cp "${srcdir}"/extlinux.conf "${pkgdir}"/boot/extlinux/ } |