mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 17:24:46 +00:00
29 lines
994 B
Bash
29 lines
994 B
Bash
# Maintainer: deadc0de6 <info@deadc0de.ch>
|
|
|
|
pkgname=dotdrop
|
|
pkgver=1.5.2
|
|
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' 'python-magic-ahupp')
|
|
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
|
|
install -Dm644 ${srcdir}/${pkgname}/completion/dotdrop-completion.bash "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
|
|
install -Dm644 ${srcdir}/${pkgname}/completion/_dotdrop-completion.zsh "${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
|
|
install -Dm644 ${srcdir}/${pkgname}/completion/dotdrop.fish "${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
|
|
}
|
|
|