mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-08 07:19:16 +00:00
25 lines
509 B
Bash
25 lines
509 B
Bash
# 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}/"
|
|
}
|
|
|