blob: 0d2509178dbcdf3817147982153be349140cb86c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# stolen from https://aur.archlinux.org/packages/mkinitcpio-tor/
pkgname=mkinitcpio-tor-http
pkgver=0.0.6
pkgrel=1
pkgdesc="Arch Linux mkinitcpio hook for running tor on the initramfs and requesting decryption keys"
arch=('any')
license=('BSD')
depends=('tor' 'jq' 'mkinitcpio-netconf' 'ntp')
source=('torhttp_hook' 'torhttp_install' 'torrc' 'config.sh')
package() {
install -Dm644 "$srcdir/torhttp_hook" "$pkgdir/usr/lib/initcpio/hooks/torhttp"
install -Dm644 "$srcdir/torhttp_install" "$pkgdir/usr/lib/initcpio/install/torhttp"
install -Dm644 "$srcdir/torrc" "$pkgdir/usr/share/$pkgname/torrc"
install -Dm644 "$srcdir/config.sh" "$pkgdir/usr/share/$pkgname/config.sh"
}
md5sums=('384ae94cd968872ec3b17bd298edf70e'
'a2d19f142cec13e308b2db81798404b0'
'ccc836fedcd716ab0da09359d8b43cff'
'224d2ffff3ce14195bf5066aa293e8dd')
|