mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
26 lines
677 B
Bash
26 lines
677 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
#
|
|
|
|
_pkgname=python-application
|
|
pkgname=python2-application
|
|
pkgver=1.4.0
|
|
pkgrel=1
|
|
pkgdesc="Collection of modules that are useful when building Python applications."
|
|
arch=('any')
|
|
license=('LGPL')
|
|
depends=('python2')
|
|
replaces=('python-application')
|
|
url="http://ag-projects.com/"
|
|
source=("http://pypi.python.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('2c1ec745f512ffd5892b0dd415074834')
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
python2 setup.py install --prefix=/usr --root="${pkgdir}" || return 1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|