Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'compile/cmake'
|
|
|
|
|
|
|
|
name=kicad
|
|
|
|
majver=5.0
|
|
|
|
version=$majver.0
|
|
|
|
|
|
|
|
dlextract "https://launchpad.net/$name/$majver/$version/+download/$name-$version.tar.xz" \
|
|
|
|
'99a39910a3f7d8320b605bb9a9ff3af8'
|
|
|
|
_
|
|
|
|
|
|
|
|
cd "$name-$version"
|
|
|
|
compile_cmake -- \
|
|
|
|
-DKICAD_USE_OCE=OFF \
|
|
|
|
-DKICAD_SCRIPTING_WXPYTHON=OFF
|
|
|
|
# Disabled WxPython until Phoenix is supported...
|
|
|
|
# It's not worth it to downgrade WxWidgets just to be able use non-existing scripts for an old library on a now unsupported version of python.
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|