PKGBUILDs/aur/python2-certifi/PKGBUILD
2012-03-05 19:35:12 -05:00

24 lines
647 B
Bash

# Maintainer: William J Bowman <bluephoenix47@gmail.com>
plugrel=1
pkgname=python2-certifi
_pkgname=certifi
pkgver=0.0.8
pkgrel=1
pkgdesc="Mozilla's SSL Certs"
arch=(any)
url="http://pypi.python.org/pypi/${_pkgname}/${pkgver}"
license=('GPL')
depends=('python2')
makedepends=('python2-distribute')
source=("http://pypi.python.org/packages/source/c/certifi/${_pkgname}-${pkgver}.tar.gz")
md5sums=('dc5f5e7f0b5fc08d27654b17daa6ecec')
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py install --root=${pkgdir}/ --optimize=1
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et: