mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
# Maintainer: Manuel "UtG" <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# Contributor: Neo Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=('python2-beaker' 'python3-beaker')
|
|
_pkgname=Beaker
|
|
pkgver=1.6.4
|
|
pkgrel=3
|
|
arch=('x86_64')
|
|
license=('custom')
|
|
pkgdesc="Caching and sessions WSGI middleware for use with web applications and stand-alone Python scripts and applications."
|
|
url="http://beaker.groovie.org/"
|
|
makedepends=('python2-setuptools' 'python3-setuptools')
|
|
source=("http://cheeseshop.python.org/packages/source/B/$_pkgname/$_pkgname-$pkgver.tar.gz")
|
|
md5sums=('c2e102870ed4c53104dec48ceadf8e9d')
|
|
|
|
build() {
|
|
cp -r ${_pkgname}-${pkgver} python2-${_pkgname}-${pkgver}
|
|
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
sed -i "s#/usr/bin/python#/usr/bin/python3#" beaker/crypto/pbkdf2.py
|
|
python3 setup.py build
|
|
|
|
cd "${srcdir}/python2-${_pkgname}-${pkgver}"
|
|
sed -i "s#/usr/bin/python#/usr/bin/python2#" beaker/crypto/pbkdf2.py
|
|
python2 setup.py build
|
|
}
|
|
|
|
package_python2-beaker() {
|
|
depends=('python2')
|
|
provides=('python-beaker')
|
|
conflicts=('python-beaker')
|
|
replaces=('python-beaker')
|
|
|
|
cd "${srcdir}/python2-${_pkgname}-${pkgver}"
|
|
python2 setup.py install --root=$pkgdir --optimize=1
|
|
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/license.txt
|
|
}
|
|
|
|
package_python3-beaker() {
|
|
depends=('python3')
|
|
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
python3 setup.py install --root="${pkgdir}" --optimize=1
|
|
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/python-beaker/LICENSE"
|
|
}
|