mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
25 lines
777 B
Text
25 lines
777 B
Text
# Contributor: <xmingske@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py3-django-pipeline
|
|
pkgver=1.7.0
|
|
pkgrel=4
|
|
pkgdesc="an asset packaging library for Django"
|
|
options="!check" # Can't run tests
|
|
url="https://github.com/jazzband/django-pipeline"
|
|
arch="noarch"
|
|
license="JSON"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/d/django-pipeline/django-pipeline-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/django-pipeline-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="08a85c890571decc1f26a9ae22cba307782d8a41bbe9a23ac799590cfa37f9ef920eeeeb0665e35928e2f09f48fcdcac3d4b6435e22388ffbd2c244b81d8d672 django-pipeline-1.7.0.tar.gz"
|