105 lines
3.5 KiB
Bash
105 lines
3.5 KiB
Bash
# Template file for 'kicad-doc'
|
|
# XXX: keep in sync with kicad
|
|
pkgname=kicad-doc
|
|
version=8.0.2
|
|
revision=1
|
|
build_wrksrc="${pkgname}-${version}"
|
|
build_style=cmake
|
|
configure_args="-DBUILD_FORMATS=html"
|
|
hostmakedepends="ruby-asciidoctor po4a"
|
|
depends="kicad>=${version}"
|
|
short_desc="Electronic schematic and PCB design software - documentation"
|
|
maintainer="classabbyamp <void@placeviolette.net>"
|
|
license="GPL-3.0-or-later, CC-BY-3.0"
|
|
homepage="http://kicad.org"
|
|
changelog="https://www.kicad.org/blog/categories/Release-Notes/"
|
|
distfiles="https://gitlab.com/kicad/services/kicad-doc/-/archive/${version}/kicad-doc-${version}.tar.gz
|
|
https://gitlab.com/kicad/libraries/kicad-templates/-/archive/${version}/kicad-templates-${version}.tar.gz
|
|
https://gitlab.com/kicad/libraries/kicad-symbols/-/archive/${version}/kicad-symbols-${version}.tar.gz
|
|
https://gitlab.com/kicad/libraries/kicad-footprints/-/archive/${version}/kicad-footprints-${version}.tar.gz
|
|
https://gitlab.com/kicad/libraries/kicad-packages3D/-/archive/${version}/kicad-packages3D-${version}.tar.gz"
|
|
checksum="0513a9c666cca09f40f738ca78cd8d1cc66597d9d2c3c180711ca5de427d78b3
|
|
5e8e127bbb204d92feda12ddc04a632c7dfc7e8569efb676cd6e5d5b4e2ce3da
|
|
21a71c04c09793d2f5f9e148818b9b28dfba603f8b154af8d17b6260222be680
|
|
4d6c5b738da0ac498655ee95276f151122478078bf45cf60b853fbbf7df2c08d
|
|
4483fe37dac6cf81849146b0b4631d0ae0b2a322b26398d2bf8e1808b49dea0c"
|
|
|
|
# none of these packages contain ELFs, but do contain a bunch of files,
|
|
# so skip stripping and elf_in_usrshare lint to speed things up significantly
|
|
nostrip=yes
|
|
ignore_elf_dirs="/usr/share/kicad"
|
|
|
|
post_configure() {
|
|
for subpkg in footprints packages3D symbols templates; do
|
|
msg_normal "kicad-${subpkg}-${version}_${revision}: running do_configure ...\n"
|
|
(
|
|
build_wrksrc="kicad-${subpkg}-${version}"
|
|
cd "../${build_wrksrc}" && do_configure
|
|
)
|
|
done
|
|
}
|
|
|
|
post_build() {
|
|
for subpkg in footprints packages3D symbols templates; do
|
|
msg_normal "kicad-${subpkg}-${version}_${revision}: running do_build ...\n"
|
|
(
|
|
cd "../kicad-${subpkg}-${version}" && do_build
|
|
)
|
|
done
|
|
}
|
|
|
|
kicad-footprints_package() {
|
|
short_desc="${short_desc/documentation/footprint libraries}"
|
|
license="CC-BY-SA-4.0"
|
|
depends="kicad>=${version}"
|
|
nostrip=yes
|
|
ignore_elf_dirs="/usr/share/kicad"
|
|
pkg_install() {
|
|
cd "../${pkgname}-${version}/build" && \
|
|
DESTDIR="${PKGDESTDIR}" ninja install
|
|
}
|
|
}
|
|
|
|
kicad-packages3D_package() {
|
|
short_desc="${short_desc/documentation/3D model libraries}"
|
|
license="CC-BY-SA-4.0"
|
|
depends="kicad>=${version}"
|
|
nostrip=yes
|
|
ignore_elf_dirs="/usr/share/kicad"
|
|
pkg_install() {
|
|
cd "../${pkgname}-${version}/build" && \
|
|
DESTDIR="${PKGDESTDIR}" ninja install
|
|
}
|
|
}
|
|
|
|
kicad-symbols_package() {
|
|
short_desc="${short_desc/documentation/schematic symbol libraries}"
|
|
license="CC-BY-SA-4.0"
|
|
depends="kicad>=${version}"
|
|
nostrip=yes
|
|
ignore_elf_dirs="/usr/share/kicad"
|
|
pkg_install() {
|
|
cd "../${pkgname}-${version}/build" && \
|
|
DESTDIR="${PKGDESTDIR}" ninja install
|
|
}
|
|
}
|
|
|
|
kicad-templates_package() {
|
|
short_desc="${short_desc/documentation/project templates}"
|
|
license="CC-BY-SA-4.0"
|
|
depends="kicad>=${version}"
|
|
nostrip=yes
|
|
ignore_elf_dirs="/usr/share/kicad"
|
|
pkg_install() {
|
|
cd "../${pkgname}-${version}/build" && \
|
|
DESTDIR="${PKGDESTDIR}" ninja install
|
|
}
|
|
}
|
|
|
|
kicad-library_package() {
|
|
short_desc="${short_desc/documentation/all libraries}"
|
|
depends="kicad-footprints>=${version}_${revision} kicad-packages3D>=${version}_${revision}
|
|
kicad-symbols>=${version}_${revision} kicad-templates>=${version}_${revision}"
|
|
build_style="meta"
|
|
}
|