mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 05:03:07 +01:00
python2-webassets-0.10-0.10-1
published in AUR, needed by pootle
This commit is contained in:
commit
10b8676288
2 changed files with 46 additions and 0 deletions
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pkgbase = python2-webassets-0.10
|
||||
pkgdesc = Media asset management for Python, with glue code for various web frameworks
|
||||
pkgver = 0.10
|
||||
pkgrel = 1
|
||||
url = http://github.com/miracle2k/webassets/
|
||||
arch = any
|
||||
license = BSD
|
||||
depends = python2
|
||||
depends = django-1.4
|
||||
optdepends = python2-pillow: support for image manipulation
|
||||
optdepends = python2-nose: required to run tests
|
||||
optdepends = python2-mock: required to run tests
|
||||
provides = python2-webassets
|
||||
conflicts = python2-webassets
|
||||
source = http://pypi.python.org/packages/source/w/webassets/webassets-0.10.tar.gz
|
||||
md5sums = 27bdefac7e640ab5752ba0c34212b9dc
|
||||
|
||||
pkgname = python2-webassets-0.10
|
||||
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=python2-webassets-0.10
|
||||
_pkgname=webassets
|
||||
pkgver=0.10
|
||||
pkgrel=1
|
||||
pkgdesc="Media asset management for Python, with glue code for various web frameworks"
|
||||
arch=('any')
|
||||
url="http://github.com/miracle2k/webassets/"
|
||||
license=('BSD')
|
||||
depends=('python2' 'django-1.4')
|
||||
optdepends=('python2-pillow: support for image manipulation'
|
||||
'python2-nose: required to run tests'
|
||||
'python2-mock: required to run tests')
|
||||
provides=('python2-webassets')
|
||||
conflicts=('python2-webassets')
|
||||
source=(http://pypi.python.org/packages/source/w/${_pkgname}/${_pkgname}-${pkgver}.tar.gz)
|
||||
md5sums=('27bdefac7e640ab5752ba0c34212b9dc')
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/$_pkgname-$pkgver"
|
||||
|
||||
python2 setup.py install --root="${pkgdir}" --optimize=1
|
||||
|
||||
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
||||
|
||||
Loading…
Add table
Reference in a new issue