2018-10-18 01:03:07 +02:00
|
|
|
# Maintainer: Grey Christoforo <first name at last name dot net>
|
2015-06-30 09:40:28 +02:00
|
|
|
|
2019-12-27 20:27:04 +01:00
|
|
|
pkgname=freecad-git
|
2021-11-14 18:29:38 +01:00
|
|
|
pkgver=0.20.0.r2110.g414f4d706e
|
2020-11-20 19:14:12 +01:00
|
|
|
pkgrel=1
|
2019-12-27 20:27:04 +01:00
|
|
|
epoch=0
|
2015-06-30 09:40:28 +02:00
|
|
|
pkgdesc='A general purpose 3D CAD modeler - git checkout'
|
2019-03-15 20:13:11 +01:00
|
|
|
arch=('x86_64')
|
|
|
|
url='https://www.freecadweb.org/'
|
2015-06-30 09:40:28 +02:00
|
|
|
license=('LGPL')
|
2020-11-21 14:03:21 +01:00
|
|
|
depends=(
|
|
|
|
boost-libs
|
|
|
|
glew
|
|
|
|
jsoncpp
|
|
|
|
med
|
|
|
|
netcdf
|
|
|
|
opencascade
|
|
|
|
openmpi
|
|
|
|
pyside2-tools
|
2020-12-18 11:06:41 +01:00
|
|
|
python-yaml
|
2020-11-21 14:03:21 +01:00
|
|
|
python-matplotlib
|
|
|
|
python-pivy
|
2020-12-20 18:25:30 +01:00
|
|
|
python-ply
|
2020-11-21 14:03:21 +01:00
|
|
|
python-pyside2
|
|
|
|
qt5-svg
|
|
|
|
qt5-tools
|
|
|
|
qt5-webkit
|
|
|
|
qt5-x11extras
|
|
|
|
qt5-xmlpatterns
|
|
|
|
shared-mime-info
|
|
|
|
xerces-c
|
2021-05-03 17:09:40 +02:00
|
|
|
vtk
|
|
|
|
#vtk9-java
|
2020-11-21 14:03:21 +01:00
|
|
|
)
|
|
|
|
makedepends=(
|
|
|
|
boost
|
|
|
|
cmake
|
|
|
|
coin
|
|
|
|
eigen
|
|
|
|
gcc-fortran
|
|
|
|
gendesk
|
|
|
|
git
|
|
|
|
ninja
|
|
|
|
pyside2
|
|
|
|
python-shiboken2
|
|
|
|
shiboken2
|
|
|
|
swig
|
|
|
|
)
|
2021-01-09 12:56:40 +01:00
|
|
|
optdepends=(
|
|
|
|
'povray: ray tracing support'
|
2021-01-09 13:07:37 +01:00
|
|
|
'luxcorerender: ray tracing support'
|
2021-01-09 12:56:40 +01:00
|
|
|
'libspnav: 3d mouse support'
|
2021-05-09 17:39:15 +02:00
|
|
|
'openscad: OpenSCAD support'
|
2021-01-09 12:56:40 +01:00
|
|
|
)
|
2015-06-30 09:40:28 +02:00
|
|
|
provides=('freecad')
|
2019-12-27 20:27:04 +01:00
|
|
|
conflicts=('freecad' 'freecad-appimage' 'freecad-appimage-git')
|
2019-12-31 14:48:34 +01:00
|
|
|
source=("git+https://github.com/FreeCAD/FreeCAD.git")
|
2019-08-22 20:36:39 +02:00
|
|
|
md5sums=('SKIP')
|
2015-06-30 09:40:28 +02:00
|
|
|
|
|
|
|
pkgver() {
|
2020-11-20 19:14:12 +01:00
|
|
|
cd FreeCAD
|
2021-10-05 08:45:27 +02:00
|
|
|
read -d$'/n' -r major minor patch < <(grep -Po "set\(PACKAGE_VERSION_(MAJOR|MINOR|PATCH) \"\K[0-9]*" CMakeLists.txt) || true
|
|
|
|
count=$(git rev-list --count $(git tag --sort=-creatordate|head -1)..HEAD)
|
|
|
|
hash=$(git rev-parse --short HEAD)
|
|
|
|
printf "%d.%d.%d.r%d.g%s" "$major" "$minor" "$patch" "$count" "$hash"
|
2015-06-30 09:40:28 +02:00
|
|
|
}
|
|
|
|
|
2019-12-27 20:27:04 +01:00
|
|
|
prepare() {
|
2020-12-05 12:34:05 +01:00
|
|
|
cd FreeCAD
|
2021-05-03 17:09:40 +02:00
|
|
|
|
2021-06-30 14:41:49 +02:00
|
|
|
#sed 's,from femexamples.boxanalysis_frequency import setup,return,' -i src/Mod/Fem/femtest/app/test_ccxtools.py
|
|
|
|
#sed 's,from femexamples.thermomech_flow1d import setup,return,' -i src/Mod/Fem/femtest/app/test_ccxtools.py
|
|
|
|
|
2021-04-08 12:34:33 +02:00
|
|
|
#git revert --no-commit 663ac994a794606e56d086cac85598517bd323dc
|
2021-01-16 14:17:40 +01:00
|
|
|
#git checkout 927fdc9edc
|
2020-12-20 18:25:30 +01:00
|
|
|
}
|
|
|
|
|
2021-05-09 15:07:41 +02:00
|
|
|
_destdir="/usr"
|
|
|
|
|
2020-12-20 18:25:30 +01:00
|
|
|
build() {
|
|
|
|
cd FreeCAD
|
2015-06-30 09:40:28 +02:00
|
|
|
|
2021-05-09 15:07:41 +02:00
|
|
|
cmake -Wno-dev -G Ninja -B build_dir -S . \
|
2021-10-24 13:27:37 +02:00
|
|
|
-D BUILD_ENABLE_CXX_STD=C++17 \
|
2021-04-04 20:57:30 +02:00
|
|
|
-D BUILD_FEM=ON \
|
|
|
|
-D BUILD_MESH=ON \
|
2021-05-03 17:09:40 +02:00
|
|
|
-D BUILD_MESH_PART=ON \
|
|
|
|
-D BUILD_SHIP=ON \
|
|
|
|
-D BUILD_ASSEMBLY=OFF \
|
2021-05-09 15:07:41 +02:00
|
|
|
-D BUILD_COMPLETE=ON \
|
2021-05-03 17:09:40 +02:00
|
|
|
-D BUILD_PLOT=ON \
|
2021-01-16 14:17:40 +01:00
|
|
|
-D CMAKE_BUILD_TYPE=None \
|
2020-12-05 12:34:05 +01:00
|
|
|
-D CMAKE_C_FLAGS="${CFLAGS} -fPIC -w" \
|
|
|
|
-D CMAKE_CXX_FLAGS="${CXXFLAGS} -fPIC -w" \
|
2020-11-20 17:55:21 +01:00
|
|
|
-D FREECAD_USE_EXTERNAL_PIVY=ON \
|
|
|
|
-D FREECAD_USE_OCC_VARIANT="Official Version" \
|
|
|
|
-D FREECAD_USE_QT_FILEDIALOG=ON \
|
|
|
|
-D PYTHON_EXECUTABLE=/usr/bin/python \
|
2021-05-09 15:07:41 +02:00
|
|
|
-D INSTALL_TO_SITEPACKAGES=ON \
|
|
|
|
-D CMAKE_INSTALL_PREFIX="${_destdir}/lib/freecad" \
|
|
|
|
-D CMAKE_INSTALL_BINDIR=bin \
|
|
|
|
-D CMAKE_INSTALL_LIBDIR='../../lib' \
|
|
|
|
-D CMAKE_INSTALL_DATADIR='../../share/freecad' \
|
|
|
|
-D CMAKE_INSTALL_DATAROOTDIR='../../share' \
|
|
|
|
-D CMAKE_INSTALL_DOCDIR='../../share/doc/freecad'
|
2020-12-05 12:34:05 +01:00
|
|
|
|
2021-01-16 14:17:40 +01:00
|
|
|
cmake --build build_dir
|
2015-06-30 09:40:28 +02:00
|
|
|
}
|
|
|
|
|
2020-12-17 15:44:44 +01:00
|
|
|
check() {
|
2021-01-16 14:17:40 +01:00
|
|
|
cd FreeCAD
|
2021-06-30 14:41:49 +02:00
|
|
|
unset PATH_TO_FREECAD_LIBDIR
|
|
|
|
cd build_dir
|
2021-11-14 18:29:38 +01:00
|
|
|
LD_LIBRARY_PATH=lib bin/FreeCADCmd --console --run-test 0
|
2020-12-17 15:44:44 +01:00
|
|
|
}
|
|
|
|
|
2015-06-30 09:40:28 +02:00
|
|
|
package() {
|
2020-12-05 12:34:05 +01:00
|
|
|
cd FreeCAD
|
2021-06-30 14:41:49 +02:00
|
|
|
DESTDIR="${pkgdir}" cmake --install build_dir
|
2020-11-20 17:55:21 +01:00
|
|
|
|
2021-05-09 15:07:41 +02:00
|
|
|
# get python site package folder in the right place
|
|
|
|
cp -a "${pkgdir}${_destdir}"/lib/freecad/lib "${pkgdir}${_destdir}"
|
|
|
|
rm -rf "${pkgdir}${_destdir}"/lib/freecad/lib
|
2019-04-03 19:14:00 +02:00
|
|
|
|
2021-05-09 15:07:41 +02:00
|
|
|
# link all the .sos into python site package dir
|
|
|
|
python_site_packages="$(python -c 'import sys; print(sys.path[-1])')"
|
|
|
|
mkdir -p "${pkgdir}/${python_site_packages}"
|
|
|
|
FILES="${pkgdir}${_destdir}"/lib/*.so
|
|
|
|
for f in $FILES
|
|
|
|
do
|
|
|
|
ln -s ${_destdir}/lib/$(basename $f) "${pkgdir}/${python_site_packages}/$(basename $f)"
|
|
|
|
done
|
2021-05-07 11:01:31 +02:00
|
|
|
|
|
|
|
# links for bin
|
|
|
|
mkdir -p "${pkgdir}${_destdir}"/bin
|
|
|
|
FILES="${pkgdir}${_destdir}"/lib/freecad/bin/*
|
|
|
|
for f in $FILES
|
|
|
|
do
|
2021-05-09 15:07:41 +02:00
|
|
|
ln -s '../lib/freecad/bin/'$(basename $f) "${pkgdir}${_destdir}"/bin/$(basename $f)
|
2021-05-07 11:01:31 +02:00
|
|
|
done
|
2021-01-08 21:24:29 +01:00
|
|
|
|
2021-05-09 15:07:41 +02:00
|
|
|
# env var for __init__.py
|
|
|
|
mkdir -p "${pkgdir}"/etc/profile.d
|
|
|
|
echo "export PATH_TO_FREECAD_LIBDIR=${_destdir}/lib" > "${pkgdir}"/etc/profile.d/freecad.sh
|
|
|
|
|
|
|
|
install -Dt "${pkgdir}${_destdir}/share/licenses/${pkgname}" -m644 LICENSE
|
2015-06-30 09:40:28 +02:00
|
|
|
}
|