mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
807 B
Bash
26 lines
807 B
Bash
# Maintainer: Mike Staszel <mikestaszel@gmail.com>
|
|
|
|
# This PKGBUILD installs the README executable (confusing name)
|
|
# for a kernel and modules from sheeva.with-linux.com.
|
|
# It asks users whether to install to USB/SD or to NAND, automating the process.
|
|
|
|
pkgname=kernel26-withlinux
|
|
pkgver=2.6.34.1
|
|
pkgrel=1
|
|
pkgdesc="The Linux Kernel and modules"
|
|
arch=('arm')
|
|
license=('GPL2')
|
|
url="http://sheeva.with-linux.com/sheeva/"
|
|
depends=('coreutils' 'module-init-tools')
|
|
makedepends=()
|
|
conflicts=('kernel26')
|
|
provides=('kernel26')
|
|
install=kernel26-withlinux.install
|
|
source=(http://sheeva.with-linux.com/sheeva/README-$pkgver)
|
|
md5sums=('b5374deb75373e56ae56a0d362dc58f6')
|
|
|
|
build() {
|
|
cd ${srcdir}/
|
|
mkdir -p ${pkgdir}/usr/share/plugapps/kernel
|
|
install -D -m 755 README-$pkgver ${pkgdir}/usr/share/plugapps/kernel/
|
|
}
|