Skip to content
Snippets Groups Projects
Verified Commit 1a184281 authored by Frederik “Freso” S. Olesen's avatar Frederik “Freso” S. Olesen
Browse files

Compile against GLM 1.0.0

CalcMySky 0.3.1 errors out when compiling against latest/current GLM due
to using some experimental features which have been hidden behind a flag
as per the 1.0.0 release. This patch sets the flag that enables the use
of these features where needed.

See https://github.com/10110111/CalcMySky/pull/18
parent 5cfa6e00
No related branches found
No related tags found
No related merge requests found
pkgbase = calcmysky
pkgdesc = Simulator of light scattering by planetary atmospheres
pkgver = 0.3.1
pkgrel = 1
pkgrel = 2
url = https://github.com/10110111/CalcMySky
arch = x86_64
license = GPL
......@@ -11,6 +11,8 @@ pkgbase = calcmysky
depends = glm
depends = qt6-base
source = CalcMySky-0.3.1.tar.gz::https://github.com/10110111/CalcMySky/archive/v0.3.1.tar.gz
source = CalcMySky-0.3.1-define_glm_experimental.patch::https://github.com/10110111/CalcMySky/pull/18.patch
sha512sums = 3038feffdf3a61d49d39304b72f1c2809ea5e3a835c4b3c1603162802afc3d27af6cdfd63eb3286e9e614850b73e338e1cc2cf6a6e915ea968194c0a7a9a56eb
sha512sums = 354ada3efc2b6ac5ab3213c56f01209ae06c49729be57229fa008b8093dbbff00654cde7d8320255a880849c715dfa2013b232747fc36d8827f1f2dbb3445dad
pkgname = calcmysky
......@@ -3,15 +3,21 @@
_base=CalcMySky
pkgname=${_base,,}
pkgver=0.3.1
pkgrel=1
pkgrel=2
pkgdesc="Simulator of light scattering by planetary atmospheres"
arch=(x86_64)
url="https://github.com/10110111/${_base}"
license=(GPL)
depends=('eigen' 'glm' 'qt6-base')
makedepends=('cmake' 'ninja')
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz)
sha512sums=('3038feffdf3a61d49d39304b72f1c2809ea5e3a835c4b3c1603162802afc3d27af6cdfd63eb3286e9e614850b73e338e1cc2cf6a6e915ea968194c0a7a9a56eb')
source=(${_base}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz
${_base}-${pkgver}-define_glm_experimental.patch::${url}/pull/18.patch)
sha512sums=('3038feffdf3a61d49d39304b72f1c2809ea5e3a835c4b3c1603162802afc3d27af6cdfd63eb3286e9e614850b73e338e1cc2cf6a6e915ea968194c0a7a9a56eb'
'354ada3efc2b6ac5ab3213c56f01209ae06c49729be57229fa008b8093dbbff00654cde7d8320255a880849c715dfa2013b232747fc36d8827f1f2dbb3445dad')
prepare() {
patch --directory="${_base}-${pkgver}" --forward --strip=1 --input="${srcdir}/${_base}-${pkgver}-define_glm_experimental.patch"
}
build() {
cmake \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment