mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +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
		
			
				
	
	
		
			26 lines
		
	
	
		
			735 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			735 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: David Demelier <markand@malikania.fr>
 | |
| # Maintainer: David Demelier <markand@malikania.fr>
 | |
| pkgname=mkdocs-gitbook
 | |
| pkgver=0.0.1
 | |
| pkgrel=2
 | |
| pkgdesc="GitBook theme for mkdocs"
 | |
| url="https://gitlab.com/lramage/mkdocs-gitbook-theme"
 | |
| arch="noarch"
 | |
| license="Apache-2.0"
 | |
| depends="python3"
 | |
| makedepends="py3-setuptools"
 | |
| source="https://files.pythonhosted.org/packages/source/m/mkdocs-gitbook/mkdocs-gitbook-$pkgver.tar.gz"
 | |
| options="!check" # No tests.
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 2cc5b23f83fa27157d0a5f9bc788a3bdd351cb60cbe6cd5d4f76c54483e8805ad225879c026e5a0de72485446ca6a7b49277087cfb56e9abe983eb086de85b83  mkdocs-gitbook-0.0.1.tar.gz
 | |
| "
 |