Skip to content

Commit

Permalink
Merge pull request #181 from tpimh/arch-any
Browse files Browse the repository at this point in the history
Set arch to 'any' if the package doesn't contain any native code
  • Loading branch information
sharkwouter authored Jul 15, 2024
2 parents 1101a1e + 9c17ddf commit 2bcd80b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/``.
Expand Down
2 changes: 1 addition & 1 deletion glm/PSPBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 2bcd80b

Please sign in to comment.