diff options
author | xiota | 2025-04-16 23:46:54 +0000 |
---|---|---|
committer | xiota | 2025-04-16 23:46:54 +0000 |
commit | 9bedf909356a3b5145e979dcda188bc934635fc4 (patch) | |
tree | 0a6bb9fee286041f0a465dd15714003e4a6f121a /PKGBUILD | |
parent | 62919fedb9f7d701e97de827326549b01cbb9018 (diff) | |
download | aur-fparser-git.tar.gz |
CMAKE_POLICY_VERSION_MINIMUM=3.5
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3,12 +3,15 @@ _pkgname="fparser" pkgname="$_pkgname-git" pkgver=r12.a952179 -pkgrel=2 +pkgrel=3 pkgdesc="Function Parser for C++, Fork from http://warp.povusers.org/FunctionParser/" url="https://github.com/thliebig/fparser" arch=('i686' 'x86_64') license=('LGPL-3.0-only') +depends=( + 'gcc-libs' +) makedepends=( 'cmake' 'git' @@ -34,6 +37,7 @@ build() { -G Ninja -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_PREFIX='/usr' + -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -Wno-dev ) |