38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Template file for 'python3-matplotlib'
 | |
| pkgname=python3-matplotlib
 | |
| version=3.5.2
 | |
| revision=1
 | |
| wrksrc="matplotlib-${version}"
 | |
| build_style=python3-module
 | |
| build_helper="numpy"
 | |
| hostmakedepends="pkg-config python3-setuptools_scm python3-certifi python3-numpy"
 | |
| makedepends="python3-devel freetype-devel libpng-devel libqhull-devel"
 | |
| depends="python3-cycler fonttools python3-kiwisolver python3-numpy
 | |
|  python3-packaging python3-Pillow python3-parsing python3-dateutil"
 | |
| short_desc="Python3 2D/3D plotting library"
 | |
| maintainer="Andrew J. Hesford <ajh@sideband.org>"
 | |
| license="custom:matplotlib, BSD-3-Clause, MIT"
 | |
| homepage="https://matplotlib.org/"
 | |
| distfiles="https://github.com/matplotlib/matplotlib/archive/v${version}.tar.gz"
 | |
| checksum=c81325d1b0d822ef75fd71d243f98478cdca1f800a838a2a1bc8e4e17b8df93c
 | |
| replaces="python3-matplotlib-data>=0"
 | |
| # Comparison of images is too frail for validation
 | |
| make_check="no"
 | |
| 
 | |
| post_patch() {
 | |
| 	vsed -e '/setuptools_scm_git_archive/d' -i setup.py
 | |
| }
 | |
| 
 | |
| pre_build() {
 | |
| 	cat <<-EOF > mplsetup.cfg
 | |
| 	[libs]
 | |
| 	system_freetype = true
 | |
| 	system_qhull = true
 | |
| 	EOF
 | |
| }
 | |
| 
 | |
| post_install() {
 | |
| 	vdoc "${FILESDIR}/README.voidlinux"
 | |
| 	vlicense LICENSE/LICENSE
 | |
| }
 | 
