40 lines
1.3 KiB
Text
40 lines
1.3 KiB
Text
# Template file for 'tor'
|
|
pkgname=tor
|
|
version=0.2.3.25
|
|
revision=1
|
|
build_style=gnu-configure
|
|
makedepends="zlib-devel openssl-devel libevent-devel ca-certificates tsocks"
|
|
short_desc="Anonymity Online"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://www.torproject.org/"
|
|
distfiles="http://www.torproject.org/dist/tor-$version.tar.gz"
|
|
checksum=bb2d6f1136f33e11d37e6e34184143bf191e59501613daf33ae3d6f78f3176a0
|
|
long_desc="
|
|
Tor is a network of virtual tunnels that allows people and groups to improve
|
|
their privacy and security on the Internet. It also enables software developers
|
|
to create new communication tools with built-in privacy features. Tor provides
|
|
the foundation for a range of applications that allow organizations and
|
|
individuals to share information over public networks without compromising
|
|
their privacy."
|
|
|
|
post_install() {
|
|
# Use our own default config file.
|
|
vinstall ${FILESDIR}/torrc 640 etc/tor
|
|
rm -f ${DESTDIR}/etc/tor/torrc.sample
|
|
# Install systemd service.
|
|
vinstall ${FILESDIR}/tor.service 644 usr/lib/systemd/system
|
|
}
|
|
|
|
tor_package() {
|
|
depends="shadow ca-certificates tsocks"
|
|
conf_files="/etc/tor/tor-tsocks.conf /etc/tor/torrc"
|
|
system_accounts="tor"
|
|
tor_homedir="/var/lib/tor"
|
|
systemd_services="tor.service on"
|
|
make_dirs="/var/lib/tor 0700 tor tor"
|
|
pkg_install() {
|
|
vmove etc
|
|
vmove usr
|
|
}
|
|
}
|