PKGBUILDs/core/initscripts/PKGBUILD

47 lines
1.6 KiB
Bash
Raw Normal View History

2012-09-14 15:21:51 +00:00
# $Id: PKGBUILD 165801 2012-08-30 16:58:57Z tomegun $
2012-01-21 22:21:45 +00:00
# Maintainer: Tom Gundersen <teg@jklm.no>
# Contributor: Thomas Bächler <thomas@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>
pkgname=initscripts
2012-09-14 15:21:51 +00:00
pkgver=2012.08.3
pkgrel=2
pkgdesc="System initialization/bootup scripts"
2012-01-21 22:21:45 +00:00
arch=('any')
url="http://www.archlinux.org"
license=('GPL2')
groups=('base')
2012-09-14 15:21:51 +00:00
provides=('initscripts-systemd')
conflicts=('initscripts-systemd')
replaces=('initscripts-systemd')
2012-07-29 00:59:04 +00:00
backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
2012-06-28 12:57:28 +00:00
depends=('glibc' 'bash' 'coreutils' 'systemd-tools' 'iproute2' 'ncurses' 'findutils' 'sysvinit')
2012-09-14 15:21:51 +00:00
optdepends=('dhcpcd: DHCP network configuration'
'bridge-utils: Legacy network bridging support'
'net-tools: Legacy network support'
'wireless_tools: Legacy wireless networking')
2012-01-21 22:21:45 +00:00
makedepends=(asciidoc)
install=initscripts.install
2012-01-21 22:21:45 +00:00
source=("ftp://ftp.archlinux.org/other/initscripts/${pkgname}-${pkgver}.tar.xz"
'alarm.patch'
'rc.conf')
2012-09-14 15:21:51 +00:00
md5sums=('b5e8de40bf798637cb1634a1555d0f1f'
2012-07-29 00:59:04 +00:00
'e7ec1f2d469258b91bbda84284d37c4c'
2012-01-21 22:21:45 +00:00
'c618e099f522f861e08a475f8960a6c2')
package() {
2012-01-21 22:21:45 +00:00
cd ${srcdir}/${pkgname}-${pkgver}
patch -p1 -i "${srcdir}/alarm.patch"
cp "${srcdir}/rc.conf" .
[ "${CARCH}" == "arm" ] && sed -i 's/@TTY@/ttyS0/' inittab
2012-07-29 19:17:49 +00:00
[ "${CARCH}" == "armv6h" ] && sed -i 's/@TTY@/ttyS0/' inittab
2012-01-21 22:21:45 +00:00
[ "${CARCH}" == "armv7h" ] && sed -i 's/@TTY@/ttyO2/' inittab
make DESTDIR=${pkgdir} install
2012-09-14 15:21:51 +00:00
# moved to filesystem
rm -rf ${pkgdir}/etc/profile.d
rm ${pkgdir}/usr/share/man/man7/archlinux.7
}