mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 16:49:42 +00:00
26 lines
597 B
Bash
26 lines
597 B
Bash
# Maintainer: deadc0de6 <info@deadc0de.ch>
|
|
|
|
pkgname=dotdrop
|
|
pkgver=0.31.0
|
|
pkgrel=1
|
|
pkgdesc="Save your dotfiles once, deploy them everywhere "
|
|
arch=('any')
|
|
url="https://github.com/deadc0de6/dotdrop"
|
|
license=('GPL')
|
|
groups=()
|
|
depends=('python' 'python-setuptools' 'python-jinja' 'python-docopt' 'python-ruamel-yaml')
|
|
makedepends=('git')
|
|
source=("git+https://github.com/deadc0de6/dotdrop.git#tag=v${pkgver}")
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd "${pkgname}"
|
|
git describe --abbrev=0 --tags | sed 's/^v//g'
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}"
|
|
python setup.py install --root="${pkgdir}/" --optimize=1
|
|
}
|
|
|