PKGBUILDs/core/mkinitcpio/PKGBUILD

56 lines
2.8 KiB
Bash
Raw Normal View History

2021-02-19 03:03:40 +00:00
# Maintainer: Giancarlo Razzolini <grazzolini@archlinux.org>
2022-10-25 12:34:17 +00:00
# Maintainer: Morten Linderud <foxboron@archlinux.org>
# Contributor: Dave Reisner <dreisner@archlinux.org>
# Contributor: Thomas Bächler <thomas@archlinux.org>
2021-02-19 03:03:40 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2021-02-20 17:19:54 +00:00
# - swap zstd for gzip in depends, remove gzip optdepend
# - patch to revert back to gzip for default compression
2022-03-16 04:26:49 +00:00
# - patch for gzip kernel image support (https://github.com/archlinux/mkinitcpio/pull/86)
2021-02-19 03:03:40 +00:00
pkgname=mkinitcpio
2022-11-24 16:39:57 +00:00
pkgver=33
pkgrel=1
2021-02-19 03:03:40 +00:00
pkgdesc="Modular initramfs image creation utility"
arch=('any')
2021-07-15 12:27:50 +00:00
url='https://github.com/archlinux/mkinitcpio'
2021-02-19 03:03:40 +00:00
license=('GPL')
depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.23' 'libarchive' 'coreutils'
2021-12-03 15:01:01 +00:00
'bash' 'binutils' 'diffutils' 'findutils' 'grep' 'filesystem>=2011.10-1' 'gzip' 'systemd')
2021-02-20 17:19:54 +00:00
makedepends=('asciidoc')
2021-02-19 03:03:40 +00:00
optdepends=('xz: Use lzma or xz compression for the initramfs image'
'bzip2: Use bzip2 compression for the initramfs image'
'lzop: Use lzo compression for the initramfs image'
'lz4: Use lz4 compression for the initramfs image'
'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
provides=('initramfs')
backup=('etc/mkinitcpio.conf')
2021-02-20 17:19:54 +00:00
source=("https://sources.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}
2022-03-16 04:26:49 +00:00
'0001-use-gzip-for-compression-by-default.patch'
'0002-functions-handle-gzip-compressed-kernels-in-kver_gen.patch')
2021-02-19 03:03:40 +00:00
install=mkinitcpio.install
2022-11-24 16:39:57 +00:00
sha512sums=('13526e749d23f2933db4a9ed74f138b0fafaf9b93f455dcf686b29b950247f0b62f8f6a091d7006c41642b4106bf8bcd666af03ec44a9f0ee7cf2b57b5714cf0'
2021-02-20 17:19:54 +00:00
'SKIP'
2022-11-24 16:39:57 +00:00
'711fa620fcd5685e07f19772626eb838f710e8eea8a47c33c48689935e57bfa60f6b420b70fdb351b8222d2fd5310859864be26f640c6d72c486f871dd61d48d'
'9f5d0129c93823175b04ec0a42c82fa4cc8adffb8a836773b9b08bb7d28767b1a1810f44b78501f1c501d19abd84a6d9a87d30e0d3e95c8d76f56ee5210fd5f3')
b2sums=('1a85152e6ce465e419e87a1915860be83c198f4e7a6ecab44277a68f2f1ecb316c7fed6e8af93b0282b646c2de1a8057831668749788030eb3e5256eeb28979b'
2021-02-20 17:19:54 +00:00
'SKIP'
2022-11-24 16:39:57 +00:00
'5ce998c788e90abb22df2104f9cd58a5707fad2ebad21bf29b7e4e4d3f65cb99b74e3417b93c91c45c72569262403932c5f4af5ac5becf03a8ee2e4f38be2ebf'
'8804b5b1594de02e54530f6f07fb8c41d89fef19f597dd34f5fb9bc04b601a466daeffe5474e22d7139b59f20a82ac255301b16bb623e4dc3db1406d3cda6301')
2022-10-25 12:34:17 +00:00
validpgpkeys=('ECCAC84C1BA08A6CC8E63FBBF22FB1D78A77AEAB' # Giancarlo Razzolini
'C100346676634E80C940FB9E9C02FF419FECBE16') # Morten Linderud
2021-02-19 03:03:40 +00:00
2021-02-20 17:19:54 +00:00
prepare() {
cd $pkgname-$pkgver
patch -p1 -i ../0001-use-gzip-for-compression-by-default.patch
2022-03-16 04:26:49 +00:00
patch -p1 -i ../0002-functions-handle-gzip-compressed-kernels-in-kver_gen.patch
2021-02-20 17:19:54 +00:00
}
2021-02-19 03:03:40 +00:00
check() {
make -C "$pkgname-$pkgver" check
}
package() {
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}