updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / justext / PKGBUILD
blob494bf73a5b280a336ddfed1ec046e7f75b97df4a
1 # Contributor: Kevin Brubeck Unhammer <unhammer@gmail.com>
2 # Maintainer: Kevin Brubeck Unhammer <unhammer@gmail.com>
3 pkgname=justext  
4 pkgver=1.1
5 pkgrel=1
6 pkgdesc="jusText removes boilerplate content (such as navigation links, headers, and footers) from HTML pages. Designed to preserve text with full sentences, it is suited for creating linguistic resources like Web corpora."
7 url="https://code.google.com/p/justext/"
8 arch=('i686' 'x86_64')
9 license=('New BSD License')
10 depends=('python2>=2.2.4')
11 makedepends=()
12 conflicts=()
13 replaces=()
14 backup=()
15 install=
16 source=("http://justext.googlecode.com/files/justext-1.1.tar.gz")
17 md5sums=('120d33a917a6362c88dd546d4f354c47')
18 build() {
19   cd $startdir/src/$pkgname-$pkgver
21   # From http://allanmcrae.com/2010/10/big-python-transition-in-arch-linux/
22   sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
23     -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
24     $(find . -name '*.py')
26   python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1