mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			748 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			748 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
 | |
| pkgname=py3-markdown2
 | |
| pkgver=2.4.8
 | |
| pkgrel=0
 | |
| pkgdesc="fast and complete implementation of Markdown in Python"
 | |
| url="https://github.com/trentm/python-markdown2"
 | |
| arch="noarch"
 | |
| license="MIT"
 | |
| depends="
 | |
| 	python3
 | |
| 	"
 | |
| makedepends="
 | |
| 	py3-setuptools
 | |
| 	"
 | |
| source="https://files.pythonhosted.org/packages/source/m/markdown2/markdown2-$pkgver.tar.gz"
 | |
| builddir="$srcdir/markdown2-$pkgver"
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	python3 setup.py test
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| d7ec267ac11bdb5f58b34d9bef095377790de50cea03d1ebb50f586c463c1c3ab541a88a00ea5afae83943699e607827e760504e211014ce8a2c33b4c72ff07e  markdown2-2.4.8.tar.gz
 | |
| "
 |