mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-12 19:50:18 +00:00
adding aur package
This commit is contained in:
16
packages/arch/.SRCINFO
Normal file
16
packages/arch/.SRCINFO
Normal 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
24
packages/arch/PKGBUILD
Normal 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}/"
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user