mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-21 00:21:37 +01:00
35 lines
896 B
Plaintext
35 lines
896 B
Plaintext
# Contributor: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
# Maintainer: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
pkgname=py-django-haystack
|
|
pkgver=2.8.1
|
|
pkgrel=1
|
|
pkgdesc="Modular search for Django"
|
|
url=http://haystacksearch.org/
|
|
arch=noarch
|
|
license=BSD
|
|
depends="py-django py-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/d/django-haystack/django-haystack-$pkgver.tar.gz"
|
|
|
|
_builddir=$srcdir/django-haystack-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
sha512sums="019defd304334657f5a4ef849fedcf2915800c816f4ff7a53d68a61f5506fc4b94dc43fffda2a4d4ce105a55ac37076e73edcc1ae4acd1c85240320e0af2f069 django-haystack-2.8.1.tar.gz"
|