mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
553 B
Bash
18 lines
553 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=python-application
|
|
pkgver=1.0.9
|
|
pkgrel=1
|
|
pkgdesc="a collection of modules that are useful when building python applications"
|
|
arch=(i686 x86_64)
|
|
url="http://ag-projects.com"
|
|
license=('GPL')
|
|
depends=('python')
|
|
source=(http://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
|
|
md5sums=('9693525f25cd4597b300db31a074b613')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
python setup.py install --root=$pkgdir
|
|
}
|