mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:27:14 +08:00
25 lines
846 B
Bash
25 lines
846 B
Bash
# Maintainer: Phil Miller <philm@chakra-project.org>
|
|
|
|
pkgname=initscripts
|
|
pkgver=2010.05
|
|
pkgrel=4
|
|
pkgdesc="System initialization/bootup scripts"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.chakra-project.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://chakra-project.org/sources/initscripts/${pkgname}-${pkgver}-${pkgrel}.tar.gz)
|
|
md5sums=('f193ed0e95db015f49ead147353baf7b')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}-${pkgrel}/
|
|
DESTDIR=${pkgdir} ./install.sh
|
|
}
|