summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 87281d7dcdbe0beb3500ee96a29b0c2fbf957d81 (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
# Maintainer: deadc0de6 <info@deadc0de.ch>

pkgname=dotdrop
pkgver=0.10
pkgrel=1
pkgdesc="Save your dotfiles once, deploy them everywhere "
arch=('any')
url="https://github.com/deadc0de6/dotdrop"
license=('GPL')
groups=()
depends=('python' 'python-jinja' 'python-docopt' 'python-pyaml')
source=("git+https://github.com/deadc0de6/dotdrop.git")
md5sums=('SKIP')

pkgver() {
  cd "$pkgname"
  git tag -l | tail -1 | sed 's/^v//g'
}

package() {
  cd "${pkgname}"
  python setup.py install --root="${pkgdir}/"
}