mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
33 lines
982 B
Bash
33 lines
982 B
Bash
# $Id: PKGBUILD 90030 2010-09-06 17:22:38Z thomas $
|
|
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - removed -mtune, changed -march to armv5te from i686
|
|
|
|
plugrel=1
|
|
|
|
pkgname=mkinitcpio-busybox
|
|
pkgver=1.17.2
|
|
pkgrel=1
|
|
pkgdesc="base initramfs tools"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.busybox.net/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=(http://busybox.net/downloads/busybox-${pkgver}.tar.bz2
|
|
config)
|
|
sha256sums=('7a4c9d59098734c86c3bfef421719c3239ca213bba071e284e2352ff4a01cac6'
|
|
'd2131815c28b987b0f7bf9065e7cf567c656438fbe0d44b685dc7dba387a1ca9')
|
|
|
|
build() {
|
|
cd "${srcdir}/busybox-${pkgver}"
|
|
|
|
unset CFLAGS CXXFLAGS
|
|
sed 's|^CONFIG_EXTRA_CFLAGS=.*|CONFIG_EXTRA_CFLAGS="-march=armv5te -Os -pipe -fno-strict-aliasing"|' "${srcdir}/config" > .config
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
install -D -m755 "${srcdir}/busybox-${pkgver}"/busybox "${pkgdir}/lib/initcpio/busybox"
|
|
}
|
|
# vim:set ts=2 sw=2 et:
|