diff options
author | gilgamezh | 2015-08-29 20:00:38 -0300 |
---|---|---|
committer | gilgamezh | 2015-08-29 20:00:38 -0300 |
commit | 9e5159bd6472f1ca9b8667657f413259e09ab042 (patch) | |
tree | c7e7f6b9d7d3bfe6f2a08825ee98a5d251465df2 | |
download | aur-9e5159bd6472f1ca9b8667657f413259e09ab042.tar.gz |
initial import
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 23 |
2 files changed, 39 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..732b9145cab --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = fades + pkgdesc = FAst DEpendencies for Scripts. + pkgver = 3 + pkgrel = 1 + url = https://github.com/PyAr/fades/ + arch = any + license = GPL3 + depends = python + depends = python-setuptools + optdepends = python-xdg: Used to correctly get user folders, + optdepends = python-virtualenv: Used to support different Python versions for child execution. + source = https://pypi.python.org/packages/source/f/fades/fades-3.tar.gz + md5sums = 78bebd9cfa792c3f5a270c80b8c994fc + +pkgname = fades + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..feebc200910 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Nicolás Demarchi <mail@gilgamezh.me> + +pkgname=fades +pkgver=3 +pkgrel=1 +pkgdesc="FAst DEpendencies for Scripts." +url="https://github.com/PyAr/fades/" +arch=('any') +depends=('python' 'python-setuptools') +optdepends=('python-xdg: Used to correctly get user folders', 'python-virtualenv: Used to support different Python versions for child execution.') +license=('GPL3') +source=(https://pypi.python.org/packages/source/f/fades/fades-${pkgver}.tar.gz) +md5sums=('78bebd9cfa792c3f5a270c80b8c994fc') + +build() { + cd ${srcdir}/fades-${pkgver} + python setup.py build +} + +package() { + cd ${srcdir}/fades-${pkgver} + python setup.py install --root="${pkgdir}" --optimize=1 +} |