void-packages/srcpkgs/kicad/template
Érico Rolim 5c9276218d kicad: update to 5.1.6, claim maintainer
- Use wxWidgets-gtk3

- Enable OCC for 3D rendering

- Use gitlab to download tarballs (upstream is switching to it from
launchpad and github)
2020-05-23 10:26:24 +02:00

36 lines
1.3 KiB
Bash

# Template file for 'kicad'
pkgname=kicad
version=5.1.6
revision=1
build_style=cmake
configure_args="-DKICAD_BUILD_VERSION=${version} -DKICAD_SCRIPTING=ON
-DKICAD_SCRIPTING_MODULES=ON -DKICAD_SCRIPTING_WXPYTHON=ON
-DKICAD_SCRIPTING_ACTION_MENU=ON -DBUILD_GITHUB_PLUGIN=ON -DKICAD_USE_OCE=OFF
-DKICAD_USE_OCC=ON -DKICAD_SPICE=$(vopt_if spice ON OFF)"
hostmakedepends="pkg-config swig wxWidgets-gtk3-devel"
makedepends="wxWidgets-gtk3-devel wxPython-devel python-devel glew-devel cairo-devel
libressl-devel boost-devel libcurl-devel glm occt-devel libgomp-devel
$(vopt_if spice ngspice-devel)"
depends="wxPython"
short_desc="Electronic schematic and PCB design software"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="GPL-3.0-or-later"
homepage="http://kicad-pcb.org"
distfiles="https://gitlab.com/kicad/code/${pkgname}/-/archive/${version}/kicad-${version}.tar.gz"
checksum=ac1a15e25a7ff0aca4b6224bdb2d3298081b43bedfad79470339d53d5e72beb0
build_options="spice"
build_options_default="spice"
CXXFLAGS="-std=c++17"
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" python wxPython"
configure_args+=" -DPYTHON_SITE_PACKAGE_PATH=${XBPS_CROSS_BASE}/${py2_sitelib}
-DPYTHON_DEST=${py2_sitelib}"
fi
pre_configure() {
if [ "$CROSS_BUILD" ]; then
CXXFLAGS+=" $(wx-config --cxxflags)"
fi
}