summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b97cfa1785b34349c041510a2eb888d3dffab978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Scott Moak <scott.moak@mybrainoncode.com>

pkgname=python2-wget
_hgname=python-wget
_hgauthor=techtonik
_hgcommit=9c0e6f40b3c7
pkgver=2.2
pkgrel=1
pkgdesc="pure python download utility"
arch=(any)
url="http://bitbucket.org/$_hgauthor/$_hgname"
license=('GPL')
depends=('python2')
makedepends=('python2-setuptools')
options=(!emptydirs)

source=("https://bitbucket.org/$_hgauthor/$_hgname/get/$pkgver.tar.gz")
md5sums=('47cca89b0915d13e4793067f0e634d7c')

package() {
  cd "$srcdir/$_hgauthor-$_hgname-$_hgcommit"
  python2 setup.py install --root="$pkgdir/" --optimize=1
}

# vim:set ts=2 sw=2 et: