# Maintainer: Giancarlo Razzolini # Contributor: Bartłomiej Piotrowski # Contributor: Dave Reisner # Contributor: Thomas Bächler # ALARM: Kevin Mihelich # - removed -mtune, changed -march to v7/v8 compat pkgname=mkinitcpio-busybox pkgver=1.36.1 pkgrel=1 pkgdesc='Base initramfs tools' arch=(x86_64) url="https://www.busybox.net/" license=(GPL) depends=(glibc libxcrypt) options=(!buildflags) source=(https://busybox.net/downloads/busybox-$pkgver.tar.bz2{,.sig} config) sha256sums=('b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314' 'SKIP' 'f1a67ecda5b73a50e49953efaaa0be582e4b707cf5a6270519e28ee022098518') validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B') # Denis Vlasenko prepare() { cd "busybox-$pkgver" if [ ${CARCH} = "aarch64" ]; then ARMCARCH="armv8-a" elif [ ${CARCH} = "armv7h" ]; then ARMCARCH="armv7-a -mfloat-abi=hard -mfpu=neon" fi local safeflags="-march=${ARMCARCH} -Os -pipe -fno-strict-aliasing" # use make oldconfig for updating the config file sed 's|^\(CONFIG_EXTRA_CFLAGS\)=.*|\1="'"$safeflags"'"|' "$srcdir/config" > .config } build() { # reproducible build export KCONFIG_NOTIMESTAMP=1 make -C "busybox-$pkgver" } package() { install -Dm755 "$srcdir/busybox-$pkgver/busybox" "$pkgdir/usr/lib/initcpio/busybox" }