mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
28 lines
743 B
Bash
28 lines
743 B
Bash
#
|
|
# Chakra Apps for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=cherrypy
|
|
pkgver=3.2.0
|
|
pkgrel=1
|
|
pkgdesc="A pythonic, object-oriented web development framework"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cherrypy.org"
|
|
license=('BSD')
|
|
depends=('python2')
|
|
source=(http://download.cherrypy.org/cherrypy/$pkgver/CherryPy-$pkgver.tar.gz
|
|
license)
|
|
|
|
md5sums=('e5c1322bf5ce962c16283ab7a6dcca3f'
|
|
'22365dc6b0e6835b53da009aa36af017')
|
|
|
|
build() {
|
|
cd $srcdir/CherryPy-$pkgver
|
|
python2 ./setup.py install --root=$pkgdir
|
|
install -D -m644 $srcdir/license $pkgdir/usr/share/licenses/$pkgname/license
|
|
}
|