summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9059f0b733b0d289a2f58f83f72fd075cb834c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $
# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>

pkgname=linkchecker
pkgver=9.4
pkgrel=1
pkgdesc="An command line utility to check HTML documents for broken links."
arch=('any')
url="https://github.com/linkcheck/linkchecker"
license=('GPL')
depends=('python2>=2.7.0' 'python2-requests')
source=("git+https://github.com/linkcheck/linkchecker.git")
sha256sums=('SKIP')


package() {
  cd $srcdir/$pkgname
  python2 setup.py sdist --manifest-only || return 1
  (cd doc; make)
  python2 setup.py build || return 1
  python2 setup.py install --root=$pkgdir || return 1
}