summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 316ac55e95387b5c59b43fc2d56d908a4f93f3a0 (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
# See http://wiki.archlinux.org/index.php/Python_Package_Guidelines for more
# information on Python packaging.

# Maintainer: Mike Lenzen <lenzenmi@gmail.com>
pkgname=python-encfswrapper-git
pkgver=1.0.0
pkgrel=1
pkgdesc="A command-line tool to mount encrypted encfs filesystem while another program runs" 
arch=('i686' 'x86_64')
url="https://github.com/lenzenmi/encfswrapper"
license=('GPL3')
depends=('python' 'encfs')
conflicts=('python-encfswraper')
provides=('python-encfswrapper')
source=(master::'git://github.com/lenzenmi/encfswrapper.git')
md5sums=('SKIP')

package() {
  cd "$srcdir/master"
  python setup.py install --root="$pkgdir/" --optimize=1
}



# vim:set ts=2 sw=2 et: