Skip to content

Commit

Permalink
openblas: Try to move to Cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
brunvonlope committed Feb 28, 2025
1 parent b197e5d commit 271855d
Showing 1 changed file with 29 additions and 32 deletions.
61 changes: 29 additions & 32 deletions org.gimp.GIMP.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
"command": "gimp-3.0",
"build-options": {
"env": {
"CC": "ccache cc",
"CXX": "ccache c++",
"CLICOLOR_FORCE": "1"
},
"cflags": "-fdiagnostics-color=always",
Expand Down Expand Up @@ -794,36 +792,35 @@
"/lib/pkgconfig"
],
"modules": [
{
"name": "openblas",
"sources": [
{
"type": "archive",
"url": "https://github.com/xianyi/OpenBLAS/archive/v0.3.29.tar.gz",
"sha256": "38240eee1b29e2bde47ebb5d61160207dc68668a54cac62c076bb5032013b1eb",
"x-checker-data": {
"type": "anitya",
"project-id": 2540,
"stable-only": true,
"url-template": "https://github.com/xianyi/OpenBLAS/archive/v$version.tar.gz"
}
}
],
"no-autogen": true,
"make-args": [
"DYNAMIC_ARCH=1",
"USE_OPENMP=1",
"NO_CBLAS=1",
"NO_LAPACKE=1"
],
"make-install-args": [
"PREFIX=/app"
],
"cleanup": [
"/include",
"/lib/pkgconfig"
]
}
{
"name": "openblas",
"sources": [
{
"type": "archive",
"url": "https://github.com/xianyi/OpenBLAS/archive/v0.3.29.tar.gz",
"sha256": "38240eee1b29e2bde47ebb5d61160207dc68668a54cac62c076bb5032013b1eb",
"x-checker-data": {
"type": "anitya",
"project-id": 2540,
"stable-only": true,
"url-template": "https://github.com/xianyi/OpenBLAS/archive/v$version.tar.gz"
}
}
],
"buildsystem": "cmake-ninja",
"config-opts": [
"-DCMAKE_INSTALL_PREFIX=/app",
"-DBUILD_SHARED_LIBS=ON",
"-DDYNAMIC_ARCH=ON",
"-DUSE_OPENMP=ON",
"-DBUILD_WITHOUT_CBLAS=ON",
"-DBUILD_WITHOUT_LAPACK=ON"
],
"cleanup": [
"/include",
"/lib/pkgconfig"
]
}
]
},
{
Expand Down

0 comments on commit 271855d

Please sign in to comment.