summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 286be08b4bff9f67403d62b4a632a3fe195c0404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Contributor: moparisthebest <admin dot archlinux AT moparisthebest dot com>

pkgname=cryptsetup-multidisk-ssh
pkgver=1.0
pkgrel=1
pkgdesc='Handle multiple encrypted root devices with ssh shell'
arch=('any')
license=('GPL3')
depends=('cryptsetup')
optdepends=('mkinitcpio-dropbear: Allow the encryptssh hook to unlock a root container remotely using dropbear'
            'mkinitcpio-tinyssh: Allow the encryptssh hook to unlock a root container remotely using tinyssh')
url="https://github.com/moparisthebest/cryptsetup-multidisk-ssh"
source=("https://codeload.github.com/moparisthebest/cryptsetup-multidisk-ssh/tar.gz/v$pkgver")
sha256sums=('a886feb187c398048f49e15b4ead113caa5dfb568ed842e9bbdc556f9bdff079')

package() {
	cd "${pkgname}-$pkgver"
	install -Dm644 encrypt_hook     "${pkgdir}"/usr/lib/initcpio/hooks/encrypt-multidisk-ssh
	install -Dm644 encrypt_install  "${pkgdir}"/usr/lib/initcpio/install/encrypt-multidisk-ssh
	install -Dm744 cryptsetup_shell "${pkgdir}/usr/share/$pkgname/bin/cryptsetup_shell"
	install -Dm744 query_password   "${pkgdir}/usr/share/$pkgname/bin/query_password"
	install -Dm644 readme.md        "${pkgdir}/usr/share/$pkgname/readme.md"
	install -Dm644 LICENSE          "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}