Add cryptsetup-multidisk

This commit is contained in:
Travis Burtrum 2016-11-24 00:47:42 -05:00
parent 49763e0f6b
commit 316de809b2
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,12 @@
pkgbase = cryptsetup-multidisk
pkgdesc = Handle multiple encrypted root devices
pkgver = 1.0
pkgrel = 1
url = https://github.com/moparisthebest/archlinux_encrypthook
arch = any
license = GPL3
source = https://codeload.github.com/moparisthebest/archlinux_encrypthook/tar.gz/v1.0
sha256sums = e38eed40eadfa7dadd697cbe6d06845edad35fcc37f910e5323d5b89fce5ef67
pkgname = cryptsetup-multidisk

View File

@ -0,0 +1,17 @@
# Contributor: moparisthebest <admin dot archlinux AT moparisthebest dot com>
pkgname=cryptsetup-multidisk
pkgver=1.0
pkgrel=1
pkgdesc='Handle multiple encrypted root devices'
arch=('any')
license=('GPL3')
url="https://github.com/moparisthebest/archlinux_encrypthook"
source=("https://codeload.github.com/moparisthebest/archlinux_encrypthook/tar.gz/v$pkgver")
sha256sums=('e38eed40eadfa7dadd697cbe6d06845edad35fcc37f910e5323d5b89fce5ef67')
package() {
cd "archlinux_encrypthook-$pkgver"
install -D -m644 encrypt_hook "${pkgdir}"/usr/lib/initcpio/hooks/encrypt-multidisk
install -D -m644 encrypt_install "${pkgdir}"/usr/lib/initcpio/install/encrypt-multidisk
}