mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py-django-suit
|
|
_realname=${pkgname#*-}
|
|
pkgver=0.3a1
|
|
pkgrel=0
|
|
pkgdesc="Modern theme for Django admin interface"
|
|
url="http://djangosuit.com/"
|
|
arch="noarch"
|
|
license="CC"
|
|
depends="python2"
|
|
depends_dev=""
|
|
makedepends="$depends_dev python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/d/django-suit/django-suit-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/django-suit-$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 || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="1aa2129ae4dfce8f7aa5f6dedc13021e django-suit-0.3a1.tar.gz"
|
|
sha256sums="1e59398aea4fddc669505f5b8581bb0071c68d9074d032a6bc407c491833134d django-suit-0.3a1.tar.gz"
|
|
sha512sums="2839a51b4e508ecfd0f3b7800a3f8a7b11e641b3f1a13536a322e4ba6ceb4c12a0abae767c1efd8fe85aedfcd1eae069f71e15d3b022479e9ea0bb2344acc272 django-suit-0.3a1.tar.gz"
|