summaryrefslogtreecommitdiff
path: root/pcr/nevow/PKGBUILD
blob: 26ea795159eae51579cc0f1b16229d9f69405b69 (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
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
# Contributor (Arch): Nicolas Pouillard <nicolas.pouillard@gmail.com>
# Contributor (Arch): Peter Simons <simons@cryp.to>

pkgname=nevow
pkgver=0.13.0
pkgrel=1
pkgdesc="web application construction kit written in Python"
arch=('any')
url='http://pypi.python.org/pypi/Nevow'
license=('custom')
depends=('python2' 'python2-setuptools' 'twisted')
source=("https://pypi.python.org/packages/source/N/Nevow/Nevow-${pkgver}.tar.gz")
sha512sums=('9c624ca0731f37b60aa129bb641839bd1950656d052237e62d67b5c755c0c8da828c8446863b93bf792fdea35d5f061c2ca2b4a49964f8e63a1ec9d342cfec69')

build(){
  echo "Note: If the GPG verification fails, import the PKGBUILD maintainer's GPG key. See: https://wiki.parabola.nu/GnuPG#Import_key"
  whirlpoolsum=('57c2fde3dda983d2b869e2c0a71f37404a1872d7aae7cfc6b03fab1817a40a4a301adde8034421dd20450abafb9ac26775936eec324fc9a209dc1d023a8b48d2')
  [[ "$(openssl dgst -r -whirlpool Nevow-${pkgver}.tar.gz | awk '{print $1}')" = ${whirlpoolsum} ]] && echo "Whirlpool checksum passed." || { echo "Whirlpool checksum failed!!" ;  exit 1; } # This is an added security layer. If SHA512 for some unlikely reason fails, whirlpool will check and abort if it too fails to match.
    cd "$srcdir/Nevow-$pkgver"
    python2 setup.py build
}

package(){
    cd "$srcdir/Nevow-$pkgver"
    python2 setup.py install --prefix=/usr --root="$pkgdir" --install-data=/usr/share/"$pkgname"
    install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}