PKGBUILDs/core/kernel26-withlinux/PKGBUILD

27 lines
807 B
Bash
Raw Normal View History

2009-12-07 20:25:36 +00:00
# Maintainer: Mike Staszel <mikestaszel@gmail.com>
2009-11-13 01:13:33 +00:00
# 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.
2009-11-13 01:13:33 +00:00
pkgname=kernel26-withlinux
pkgver=2.6.34.1
2010-04-24 04:23:58 +00:00
pkgrel=1
2009-11-13 01:13:33 +00:00
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
2009-12-07 20:25:36 +00:00
source=(http://sheeva.with-linux.com/sheeva/README-$pkgver)
md5sums=('b5374deb75373e56ae56a0d362dc58f6')
2009-11-13 01:13:33 +00:00
build() {
2009-11-13 01:19:01 +00:00
cd ${srcdir}/
2009-11-22 11:13:47 +00:00
mkdir -p ${pkgdir}/usr/share/plugapps/kernel
2010-04-24 04:23:58 +00:00
install -D -m 755 README-$pkgver ${pkgdir}/usr/share/plugapps/kernel/
2009-11-13 01:13:33 +00:00
}