desktop/cherrypy/PKGBUILD
2014-04-24 22:50:58 +00:00

48 lines
1.6 KiB
Bash

# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
pkgbase=cherrypy
pkgname=('python2-cherrypy' 'python3-cherrypy')
pkgver=3.3.0
pkgrel=1
pkgdesc="A pythonic, object-oriented web development framework"
arch=('x86_64')
makedepends=('python2' 'python3')
url="http://www.cherrypy.org"
license=('BSD')
categories=('programming')
source=("https://pypi.python.org/packages/source/C/CherryPy/CherryPy-${pkgver}.tar.gz")
md5sums=('4ac4af5ac21a893f07221cbd7ec4be11')
build() {
cd $srcdir/CherryPy-$pkgver
install -dm 755 $srcdir/build2
install -dm 755 $srcdir/build3
cp -R * ../build2
cp -R * ../build3
}
package_python2-cherrypy() {
depends=('python2')
provides=('cherrypy')
conflicts=('cherrypy')
replaces=('cherrypy')
cd $srcdir/build2
python2 ./setup.py install --root=$pkgdir
# install the lincence file
install -dm 755 $pkgdir/usr/share/licenses/$pkgname/
install -D -m644 ${srcdir}/CherryPy-${pkgver}/cherrypy/LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/
rm $pkgdir/usr/lib/python2.7/site-packages/cherrypy/LICENSE.txt
}
package_python3-cherrypy() {
depends=('python3')
cd $srcdir/build3
python3 ./setup.py install --root=$pkgdir
# rename the binary
install -Dm 755 $pkgdir/usr/bin/cherryd $pkgdir/usr/bin/cherryd-python3
rm $pkgdir/usr/bin/cherryd
# install the lincence file
install -dm 755 $pkgdir/usr/share/licenses/$pkgname/
install -D -m644 ${srcdir}/CherryPy-${pkgver}/cherrypy/LICENSE.txt $pkgdir/usr/share/licenses/${pkgname}/
rm $pkgdir/usr/lib/python3.3/site-packages/cherrypy/LICENSE.txt
}