summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5134f1a2477286cfc423b27e18851ab76b353921 (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
# Maintainer: Doron Behar <doron.behar@gmail.com>

pkgname=syncthingmanager
_name=syncthingmanager
pkgver=0.1.0
pkgrel=1
pkgdesc="A commandline tool for configuring Syncthing"
arch=('any')
url="https://github.com/classicsc/syncthingmanager"
license=('GPL')
groups=()
depends=('python' 'python-syncthing')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
md5sums=('8a0741f28df3e2f37dd9a93bd833ad6a')

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

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