1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 16:08:54 +00:00

adding aur package

This commit is contained in:
deadc0de6
2018-02-07 14:52:11 +01:00
parent b2cf3e3d43
commit e9980be762
2 changed files with 40 additions and 0 deletions

16
packages/arch/.SRCINFO Normal file
View File

@@ -0,0 +1,16 @@
pkgbase = dotdrop
pkgdesc = Save your dotfiles once, deploy them everywhere
pkgver = 0.9.2
pkgrel = 1
url = https://github.com/deadc0de6/dotdrop
arch = any
license = GPL
depends = python
depends = python-jinja
depends = python-docopt
depends = python-pyaml
source = git+https://github.com/deadc0de6/dotdrop.git
md5sums = SKIP
pkgname = dotdrop

24
packages/arch/PKGBUILD Normal file
View File

@@ -0,0 +1,24 @@
# Maintainer: deadc0de6 <info@deadc0de.ch>
pkgname=dotdrop
pkgver=0.9.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-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}/"
}