mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 01:27:14 +08:00
34 lines
1.2 KiB
Bash
34 lines
1.2 KiB
Bash
|
# $Id: PKGBUILD 69690 2010-02-21 21:58:51Z thomas $
|
||
|
# Maintainer: Thomas Baechler <thomas@archlinux.org>
|
||
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
||
|
# Maintainer: Aaron Griffin <aaron@archlinux.org>
|
||
|
|
||
|
pkgname=mkinitcpio
|
||
|
pkgver=0.6.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="Modular initramfs image creation utility"
|
||
|
arch=(any)
|
||
|
url="http://www.archlinux.org/"
|
||
|
license=('GPL')
|
||
|
groups=('base')
|
||
|
depends=('mkinitcpio-busybox' 'module-init-tools' 'util-linux-ng' 'gen-init-cpio' 'coreutils'
|
||
|
'bash' 'findutils' 'sed' 'grep' 'filesystem>=2009.01-2' 'udev>=150' 'file' 'gzip'
|
||
|
'which')
|
||
|
optdepends=('xz-utils: Use lzma compression for the initramfs image'
|
||
|
'bzip2: Use bzip2 compression for the initramfs image'
|
||
|
'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
|
||
|
replaces=('mkinitrd' 'mkinitramfs' 'klibc' 'klibc-extras' 'klibc-kbd'
|
||
|
'klibc-module-init-tools' 'klibc-udev')
|
||
|
source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||
|
backup=(etc/mkinitcpio.conf)
|
||
|
sha256sums=('ad0addba354399c9737b4572bbea2c10b45dfb24fd69b87b90f21fec27df2cf7')
|
||
|
|
||
|
build() {
|
||
|
:
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/${pkgname}-${pkgver}
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|