summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7687dee8a399b63726caafddad8bb0a42564956b (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
# Maintainer: Brainfuck
# http://github.com/brainfucksec

_gitname=archtorify
pkgname=archtorify-git
pkgver=1.8.1
pkgrel=1
pkgdesc="Program for simplify the configuration of transparent proxy trough Tor Network"
arch=('i686' 'x86_64')
url="https://github.com/brainfucksec/archtorify/"
license=('GPL3')
depends=('tor' 'curl')
makedepends=('git')
source=("git+https://github.com/brainfucksec/${_gitname}/")
md5sums=('SKIP')

pkgver() {
  cd "$_gitname"
  git describe --always | sed 's|-|.|g'
}

package() {
	cd "$_gitname"
	
	install -Dm644 README.md $pkgdir/usr/share/doc/$_gitname/README.md
	install -Dm755 archtorify.sh $pkgdir/usr/bin/archtorify
}

# vim:set ts=2 sw=2