From 9c17ddf83afdb76c04babd11a4b825c46cceb287 Mon Sep 17 00:00:00 2001 From: Dima Pulkinen Date: Mon, 15 Jul 2024 10:38:45 +0300 Subject: [PATCH] set arch to 'any' if the package doesn't contain any native code --- CONTRIBUTING.md | 2 +- glm/PSPBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c06265c..f483b38 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,7 +24,7 @@ For new contributions to be merged, the PSPBUILDs in them should meet the follow - The following fields should be set: - ``pkgdesc`` - ``license`` - - ``arch`` should be set to ``('mips')``. + - ``arch`` should be set to ``('mips')`` if the package contains any compiled code, otherwise (only headers, scripts, makefiles, documentation, configs, etc.) it should be set to ``('any')``. - ``sha256sums`` should be used for integrity checks of downloaded files. Git sources and local patches are allowed to use ``SKIP``. - PSPBUILDs based on versioned archive files (yourlibrary-1.2.tar.gz for instance) are preferred over those based on git/svn repositories. - The license of the library should be installed in ``$pkgdir/psp/share/licenses/$pkgname/``. diff --git a/glm/PSPBUILD b/glm/PSPBUILD index 7df2067..b548871 100644 --- a/glm/PSPBUILD +++ b/glm/PSPBUILD @@ -2,7 +2,7 @@ pkgname=glm pkgver=0.9.9 pkgrel=2 pkgdesc="OpenGL Mathematics (GLM) is a header only C++ mathematics library for graphics software based on the OpenGL Shading Language (GLSL) specifications." -arch=('mips') +arch=('any') url="https://glm.g-truc.net/" license=('MIT') groups=('pspdev-default')