Skip to content

Instantly share code, notes, and snippets.

@PyroDevil
Created November 20, 2013 12:00
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save PyroDevil/00e6a69863dd511a53d8 to your computer and use it in GitHub Desktop.
python-cssselect 0.9.1 PKGBUILD
pkgbase=python-cssselect
pkgname=('python-cssselect' 'python2-cssselect')
pkgver=0.9.1
pkgrel=1
license=('BSD')
arch=('any')
url="http://pypi.python.org/pypi/cssselect"
makedepends=('python2' 'python')
source=("http://pypi.python.org/packages/source/c/cssselect/cssselect-${pkgver}.tar.gz")
md5sums=('c74f45966277dc7a0f768b9b0f3522ac')
prepare() {
cp -r cssselect-${pkgver} python2-cssselect-${pkgver}
}
package_python-cssselect() {
pkgdesc="A Python3 library that parses CSS3 Selectors and translates them to XPath 1.0"
depends=('python')
cd cssselect-${pkgver}
python setup.py install --root="${pkgdir}/" --optimize=1
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}
package_python2-cssselect() {
pkgdesc="A Python2 library that parses CSS3 Selectors and translates them to XPath 1.0"
depends=('python2')
cd python2-cssselect-${pkgver}
python2 setup.py install --root="${pkgdir}/" --optimize=1
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
# Fix python2 shebang
sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
"${pkgdir}"/usr/lib/python2.7/site-packages/cssselect/tests.py
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment