summaryrefslogtreecommitdiff
path: root/aur/python-wpull
diff options
context:
space:
mode:
Diffstat (limited to 'aur/python-wpull')
-rw-r--r--aur/python-wpull/.SRCINFO16
-rw-r--r--aur/python-wpull/PKGBUILD20
2 files changed, 36 insertions, 0 deletions
diff --git a/aur/python-wpull/.SRCINFO b/aur/python-wpull/.SRCINFO
new file mode 100644
index 0000000..31c2bd5
--- /dev/null
+++ b/aur/python-wpull/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Wed Apr 6 15:15:20 UTC 2016
+pkgbase = python-wpull
+ pkgdesc = Wget-compatible web downloader and crawler
+ pkgver = 1.2.3
+ pkgrel = 1
+ url = https://github.com/chfoo/wpull
+ arch = any
+ license = GPL
+ makedepends = python-setuptools
+ depends = python
+ source = http://pypi.python.org/packages/source/w/wpull/wpull-1.2.3.tar.gz
+ sha256sums = 93058d8b1864c80a160a94715a471795ea13f4527e2c7713f231a6dbad73d5fe
+
+pkgname = python-wpull
+
diff --git a/aur/python-wpull/PKGBUILD b/aur/python-wpull/PKGBUILD
new file mode 100644
index 0000000..146d477
--- /dev/null
+++ b/aur/python-wpull/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+
+pkgname=python-wpull
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="Wget-compatible web downloader and crawler"
+arch=('any')
+url="https://github.com/chfoo/wpull"
+license=(GPL)
+depends=('python')
+makedepends=('python-setuptools')
+source=("http://pypi.python.org/packages/source/w/wpull/wpull-${pkgver}.tar.gz")
+sha256sums=('93058d8b1864c80a160a94715a471795ea13f4527e2c7713f231a6dbad73d5fe')
+
+package() {
+ cd "${srcdir}/wpull-${pkgver}"
+ python setup.py install --prefix=/usr --root="$pkgdir/"
+}
+
+# vim:set ts=2 sw=2 et: