mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 16:31:40 +01: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
		
			
				
	
	
		
			32 lines
		
	
	
		
			834 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			834 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: <xmingske@gmail.com>
 | |
| # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
 | |
| pkgname=py3-django-registration
 | |
| _pyname=django-registration
 | |
| pkgver=3.3
 | |
| pkgrel=1
 | |
| pkgdesc="simple user-registration application for Django"
 | |
| url="https://github.com/ubernostrum/django-registration"
 | |
| arch="noarch"
 | |
| license="BSD-3-Clause"
 | |
| depends="python3"
 | |
| makedepends="py3-setuptools"
 | |
| source="$_pyname-$pkgver.tar.gz::https://github.com/ubernostrum/django-registration/archive/$pkgver.tar.gz"
 | |
| 
 | |
| builddir="$srcdir/$_pyname-$pkgver"
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	python3 setup.py check
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 66ef0de4c1adb303717cf87e9d3ce7ab07ca60bab64cbc810f61f31d05a968c0b4fa216b90e7ad575e647c6fdb789ea875c428b0ca8b0104d055ed0882aae144  django-registration-3.3.tar.gz
 | |
| "
 |