updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / wotsap / PKGBUILD
blob6a7af85d9379f0932d95efdb88bb07ab2e238bf5
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=wotsap
8 pkgver=0.6
9 pkgrel=1
10 pkgdesc="A tool to find paths in the OpenPGP Web of Trust"
11 arch=('any')
12 url="http://www.lysator.liu.se/~jc/wotsap/"
13 license=('GPL')
14 depends=('python2' 'python-imaging')
15 changelog=
16 source=(http://www.lysator.liu.se/~jc/wotsap/download/$pkgname-$pkgver.tgz)
17 md5sums=('347755ecab208977e880cfc3182ead03')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
21   sed -i "s/python$/python2/" wotsap
24 package() {
25   cd "$srcdir/$pkgname-$pkgver"
26   install -D wotsap "$pkgdir/usr/bin/wotsap"
29 # vim:set ts=2 sw=2 et: