mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
# $Id$
|
|
# Maintainer: Tom Gundersen <teg@jklm.no>
|
|
# Contributor: Thomas Bächler <thomas@archlinux.org>
|
|
# Contributor: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - inittab serial setup for v5/v7
|
|
# - patch to turn off LEDs on shutdown, remount / rw
|
|
|
|
pkgname=initscripts
|
|
pkgver=2012.07.5
|
|
pkgrel=1
|
|
pkgdesc="System initialization/bootup scripts"
|
|
arch=('any')
|
|
url="http://www.archlinux.org"
|
|
license=('GPL2')
|
|
groups=('base')
|
|
backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
|
|
depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 'findutils' 'sysvinit')
|
|
optdepends=('bridge-utils: Network bridging support'
|
|
'dhcpcd: DHCP network configuration'
|
|
'net-tools: legacy network support'
|
|
'wireless_tools: Wireless networking')
|
|
makedepends=(asciidoc)
|
|
install=initscripts.install
|
|
source=("ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz"
|
|
'alarm.patch'
|
|
'rc.conf')
|
|
md5sums=('2e3589c8e0baac7a4ea9e353edbcf26c'
|
|
'e7ec1f2d469258b91bbda84284d37c4c'
|
|
'c618e099f522f861e08a475f8960a6c2')
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
patch -p1 -i "${srcdir}/alarm.patch"
|
|
cp "${srcdir}/rc.conf" .
|
|
[ "${CARCH}" == "arm" ] && sed -i 's/@TTY@/ttyS0/' inittab
|
|
[ "${CARCH}" == "armv7h" ] && sed -i 's/@TTY@/ttyO2/' inittab
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|