Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages / cgal
Commits: 33758a09 by Jakub Klinkovský at 2024-12-23T14:28:19+01:00 Reformat cmake options - - - - - 1 changed file: - PKGBUILD Changes: ===================================== PKGBUILD ===================================== @@ -12,13 +12,17 @@ url="https://www.cgal.org" license=(GPL-3.0-or-later LGPL-3.0-or-later) depends=(boost eigen gmp mpfr) makedepends=(cmake) -source=(https://github.com/CGAL/cgal/releases/download/v${pkgver}/CGAL-${pkgver}.tar.xz) -# https://github.com/CGAL/cgal/releases/download/v${pkgver}/sha256sum.txt +source=(https://github.com/CGAL/cgal/releases/download/v$pkgver/CGAL-$pkgver.tar.xz) sha256sums=('0acdfbf317c556630dd526f3253780f29b6ec9713ee92903e81b5c93c0f59b7f') build() { - cmake -B build -S CGAL-${pkgver} \ + local cmake_options=( + -B build + -S CGAL-$pkgver + -W no-dev -DCMAKE_INSTALL_PREFIX=/usr + ) + cmake "${cmake_options[@]}" cmake --build build } View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/cgal/-/commit/33758a09bdc84d42b1d760c2272c53a01741223c -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/cgal/-/commit/33758a09bdc84d42b1d760c2272c53a01741223c You're receiving this email because of your account on gitlab.archlinux.org.