mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
619 B
Bash
22 lines
619 B
Bash
# Contributor: Nathan Jones <nathanj@insightbb.com>
|
|
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
|
|
pkgname=twisted-web2
|
|
pkgver=8.1.0
|
|
pkgrel=3
|
|
pkgdesc="The twisted.web2 package in Twisted."
|
|
arch=('any')
|
|
url="http://twistedmatrix.com/"
|
|
license=('MIT')
|
|
depends=('twisted')
|
|
conflicts=('twisted-web')
|
|
source=("http://tmrc.mit.edu/mirror/twisted/Web2/8.1/TwistedWeb2-8.1.0.tar.bz2")
|
|
md5sums=('e34b48edf6fef075bd41ddbd215aed32')
|
|
|
|
build() {
|
|
cd $srcdir/TwistedWeb2-8.1.0/
|
|
python setup.py install --prefix=/usr --root=$pkgdir
|
|
install -D -m644 LICENSE \
|
|
$pkgdir/usr/share/licenses/twisted-web2/LICENSE
|
|
}
|
|
|