diff --git a/satellites/kicad-footprints.sat b/satellites/kicad-footprints.sat new file mode 100644 index 0000000..d5d6162 --- /dev/null +++ b/satellites/kicad-footprints.sat @@ -0,0 +1,11 @@ +name=kicad +version=4.0.7 + +dlextract "http://downloads.kicad-pcb.org/libraries/$name-footprints-$version.tar.gz" \ + '280b065c34ca9ea225772893e84c65cc' +_ + +mkdir -p "$dir_install/$dir_prefix/$dir_data/kicad" +cp -aT "$name-footprints-$version" "$dir_install/$dir_prefix/$dir_data/kicad/footprints" + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: diff --git a/satellites/kicad-library.sat b/satellites/kicad-library.sat new file mode 100644 index 0000000..3e6469b --- /dev/null +++ b/satellites/kicad-library.sat @@ -0,0 +1,13 @@ +import 'compile/cmake' + +name=kicad +version=4.0.7 + +dlextract "http://downloads.kicad-pcb.org/libraries/$name-library-$version.tar.gz" \ + 'b8517ed459d1f9d73a85b0a79691df29' +_ + +cd "$name-library-$version" +compile_cmake + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: diff --git a/satellites/kicad.sat b/satellites/kicad.sat new file mode 100644 index 0000000..75f4071 --- /dev/null +++ b/satellites/kicad.sat @@ -0,0 +1,14 @@ +import 'compile/cmake' + +name=kicad +majver=4.0 +version=$majver.7 + +dlextract "https://launchpad.net/$name/$majver/$version/+download/$name-$version.tar.xz" \ + 'af3ee2e40c25f1c01b92cd27c1a1b180' +_ + +cd "$name-$version" +compile_cmake -- -DKICAD_SKIP_BOOST=ON + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: diff --git a/satellites/wxwidgets.sat b/satellites/wxwidgets.sat new file mode 100644 index 0000000..01f196d --- /dev/null +++ b/satellites/wxwidgets.sat @@ -0,0 +1,13 @@ +import 'compile/configure' + +name=wxWidgets +version=3.1.1 + +dlextract "https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.bz2" \ + 'bc1657222d6d405aee71f318a291c735' +_ + +cd "$name-$version" +compile_configure + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: