mirror of
				https://github.com/suiryc/archlinux-initrd-ssh-cryptsetup.git
				synced 2025-11-04 10:12:33 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			801 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			801 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Julien Coloos <julien.coloos [at] gmail [dot] com>
 | 
						|
pkgname=initrd-ssh-cryptsetup
 | 
						|
pkgver=0.1
 | 
						|
pkgrel=1
 | 
						|
pkgdesc="Allows for LUKS-encrypted devices to be unlocked remotely over SSH"
 | 
						|
arch=('any')
 | 
						|
url="https://github.com/suiryc/archlinux-$pkgname"
 | 
						|
license=('GPL3')
 | 
						|
depends=('dropbear' 'cryptsetup' 'mkinitcpio-nfs-utils' 'psmisc' 'iproute2')
 | 
						|
install=$pkgname.install
 | 
						|
changelog='ChangeLog'
 | 
						|
source=("http://julien.coloos.free.fr/archlinux/$pkgname-$pkgver.tar.xz" "$pkgname.install")
 | 
						|
md5sums=('cd16f62be49eef3fa178ce292de64f48'
 | 
						|
         'a703663472bbd50882a11f6b2cfccbf0')
 | 
						|
 | 
						|
package() {
 | 
						|
  install -Dm644 "$srcdir/src/install/ssh-cryptsetup" "$pkgdir/usr/lib/initcpio/install/ssh-cryptsetup"
 | 
						|
  install -Dm644 "$srcdir/src/hooks/ssh-cryptsetup"   "$pkgdir/usr/lib/initcpio/hooks/ssh-cryptsetup"
 | 
						|
}
 | 
						|
 |