diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-07-20 16:56:34 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-07-20 16:56:34 -0300 |
commit | 9e6335fa50c1baa0000090f5426732e26c3ea8b7 (patch) | |
tree | 8feed00b02f953cccf5aadd3367315693bebf6e2 /testing/py3-django-suit | |
parent | 63abe67b4a2f27e5a4550be73ebd44bb674c8ead (diff) | |
download | aports-9e6335fa50c1baa0000090f5426732e26c3ea8b7.tar.bz2 aports-9e6335fa50c1baa0000090f5426732e26c3ea8b7.tar.xz |
testing/py3-django-suit: rename from py-django-suit
Diffstat (limited to 'testing/py3-django-suit')
-rw-r--r-- | testing/py3-django-suit/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py3-django-suit/APKBUILD b/testing/py3-django-suit/APKBUILD new file mode 100644 index 0000000000..21a80fef1b --- /dev/null +++ b/testing/py3-django-suit/APKBUILD @@ -0,0 +1,41 @@ +# 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" |