summaryrefslogtreecommitdiff
path: root/repo/system/tor/tor.xibuild
blob: 8441516cd957ca50b11eb22ef980335bb94ea9be (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

NAME="tor"
DESC="Anonymous network connectivity"

MAKEDEPS="make "
DEPS="libcap libseccomp libevent openssl cacerts zlib xz zstd "

PKG_VER=0.4.7.7
SOURCE="https://www.torproject.org/dist/tor-$PKG_VER.tar.gz"
ADDITIONAL="torrc.sample.patch tor.initd tor.confd"

prepare () {
    apply_patches
}

build () {
    ./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--localstatedir=/var \
		--mandir=/usr/share/man \
		--disable-html-manual
	make

}

package () {
    make DESTDIR="$PKG_DEST" install

	install -dm0755 -o "tor" \
		"$PKG_DEST"/var/lib/"tor" \
		"$PKG_DEST"/var/log/"tor"

	install -Dm0755 "tor".initd \
		"$PKG_DEST"/etc/init.d/"tor"
	install -Dm0644 "tor".confd \
		"$PKG_DEST"/etc/conf.d/"tor"
}

postinstall () {
    adduser -S -D -H -h /var/lib/tor -s /sbin/nologin -g tor tor 2>/dev/null
    return 0
}