mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-25 02:52:16 +08:00
28 lines
1011 B
Bash
28 lines
1011 B
Bash
# $Id: PKGBUILD 65141 2010-01-24 14:36:41Z thomas $
|
|
# Maintainer: Thomas Bächler <thomas@archlinux.org>
|
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=initscripts
|
|
pkgver=2010.01
|
|
pkgrel=2
|
|
pkgdesc="System initialization/bootup scripts"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.archlinux.org"
|
|
license=('GPL')
|
|
groups=('base')
|
|
backup=(etc/inittab etc/rc.conf etc/rc.local etc/rc.local.shutdown)
|
|
depends=('glibc' 'bash' 'awk' 'grep' 'coreutils' 'sed' 'udev>=139-1'
|
|
'net-tools' 'ncurses' 'kbd' 'findutils' 'sysvinit')
|
|
optdepends=('bridge-utils: Network bridging support'
|
|
'dhcpcd: DHCP network configuration'
|
|
'wireless_tools: Wireless networking')
|
|
install=initscripts.install
|
|
source=(http://konnektion.ath.cx/sources/core/initscripts/${pkgname}-${pkgver}-1.tar.xz)
|
|
sha256sums=('90b8ce0c235dd74423adc2174f23c1a0776a050f782c3b338c5407dfc8c70410')
|
|
md5sums=('0d61c132e916010c51c85d561102e098')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-1/
|
|
DESTDIR=${pkgdir} ./install.sh
|
|
}
|