mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-27 06:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
 | |
| # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
 | |
| pkgname=py-sphinxcontrib-gist
 | |
| _pkgname=sphinxcontrib.gist
 | |
| pkgver=0.1.0
 | |
| pkgrel=0
 | |
| pkgdesc="Sphinx gist extension"
 | |
| url="https://pypi.python.org/pypi/sphinxcontrib-gist"
 | |
| arch="noarch"
 | |
| license="LGPL3"
 | |
| depends="python2 py-sphinx"
 | |
| depends_dev=""
 | |
| makedepends="python2-dev py-setuptools"
 | |
| install=""
 | |
| subpackages=""
 | |
| source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
 | |
| 
 | |
| _builddir="$srcdir"/$_pkgname-$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="c5407ca9eee82f1449f079844fc2813e  sphinxcontrib.gist-0.1.0.tar.gz"
 | |
| sha256sums="c58c7d7ea53bd7b6f97b04a5a20d6b1ebd3fd65523fdf985c6988bddb4d6e714  sphinxcontrib.gist-0.1.0.tar.gz"
 | |
| sha512sums="a6bc8bae2bf64c5201452134c075c6336ab1928c534bb6d274c3fdda555609ad58e02d11d4c9d78528be39578c759394016c58ef6f0bad1ffc38328e3cf3ca00  sphinxcontrib.gist-0.1.0.tar.gz"
 |