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.

25 lines
711 B

7 years ago
import 'compile/cmake'
name=kicad
6 years ago
version=5.0.0
7 years ago
6 years ago
dlextract "https://github.com/KiCad/$name-symbols/archive/$version/$name-symbols-$version.tar.gz" \
'03cb33312062571118a277bafd01c06d'
dlextract "https://github.com/KiCad/$name-footprints/archive/$version/$name-footprints-$version.tar.gz" \
'e8ce40c47b108280d7878f858899ab10'
dlextract "https://github.com/KiCad/$name-packages3D/archive/$version/$name-packages3D-$version.tar.gz" \
'aac66499bbbd9f21ad3e90af7ba854d2'
7 years ago
_
6 years ago
( cd "$name-symbols-$version"
compile_cmake
)
( cd "$name-footprints-$version"
compile_cmake
)
( cd "$name-packages3D-$version"
compile_cmake
)
7 years ago
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: