summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f6df48e220d2544129967dc3315ea49f77da581 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Maintainer:  jyantis <yantis@yantis.net>

pkgname=python2-html2text-git
pkgver=r527.3950277
pkgrel=1
pkgdesc='Python 2 package that converts a page of HTML into clean, easy-to-read plain ASCII text. Better yet, that ASCII also happens to be valid Markdown (a text-to-HTML format)'
arch=('any')
url='http://alir3z4.github.io/html2text'
license=('GPL3')
depends=('python2' 'python2-setuptools')
source=('git+https://github.com/Alir3z4/html2text.git')
sha256sums=('SKIP')
makedepends=('git')
conflicts=('python2-html2text')
provides=('python2-html2text')

pkgver() {
  cd html2text
  set -o pipefail
  git describe --long | sed -r 's/([^-]*-g)/r\1/;s/-/./g' ||
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd html2text

  # Patch any #!/usr/bin/python to #!/usr/bin/python2
  for file in $(find . -name '*.py' -print); do
    sed -r -i 's_^#!.*/usr/bin/python(\s|$)_#!/usr/bin/python2_' $file
    sed -r -i 's_^#!.*/usr/bin/env(\s)*python(\s|$)_#!/usr/bin/env python2_' $file
  done

  python2 setup.py build
}

check() {
  cd html2text
  python2 setup.py test --verbose
}

package() {
  cd html2text

  # We don't need anything related to git in the package
  rm -rf .git*

  python2 setup.py install --root="${pkgdir}" --optimize=1

  # Install Documentation
  install -D -m644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"

  # Remove html2text binary since it conflicts with the community package html2text
  # and the other python versions of this package
  rm "$pkgdir/usr/bin/html2text"
  rmdir "$pkgdir/usr/bin"

}

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