Package Details: projectctr-makerom 0.19.0-1

Git Clone URL: https://aur.archlinux.org/projectctr-makerom.git (read-only, click to copy)
Package Base: projectctr-makerom
Description: Creates CTR cxi/cfa/cci/cia files
Upstream URL: https://github.com/3DSGuy/Project_CTR/tree/master/makerom
Licenses: MIT
Submitter: Mininux
Maintainer: Fijxu
Last Packager: Fijxu
Votes: 0
Popularity: 0.000000
First Submitted: 2021-03-12 15:30 (UTC)
Last Updated: 2026-04-17 17:23 (UTC)

Latest Comments

HurricanePootis commented on 2026-03-19 10:56 (UTC) (edited on 2026-03-19 11:58 (UTC) by HurricanePootis)

Hi, your package is out of date. Also, it needs the following changes:

  1. Change the arch from any to x86_64. This is a compiled project, after all.
  2. Add libstdc++, libgcc, and glibc to depends().
  3. Encapsulate $srcdir and $pkgdir in double-quotes. This is to ensure that the PKGBUILD will work if the user has a space in any folders.
diff --git a/PKGBUILD b/PKGBUILD
index e6194e9..ee2acb0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,15 @@
 # Contributor: Yacob Zitouni <yacob.zitouni@gmail.com>

 pkgname="projectctr-makerom"
-pkgver=0.18.4
+pkgver=0.19.0
 pkgrel=1
 pkgdesc="Creates CTR cxi/cfa/cci/cia files"
-arch=('any')
+arch=('x86_64')
 url="https://github.com/3DSGuy/Project_CTR/tree/master/makerom"
 license=('MIT')
+depends=('libstdc++' 'libgcc' 'glibc')
 source=("https://github.com/3DSGuy/Project_CTR/archive/refs/tags/makerom-v$pkgver.tar.gz")
-sha256sums=('fa34054e8f4e026bdf4a3cf523c622d942736d1a1ea60541842bd80b596e388b')
+sha256sums=('446bd23919b7e9fa10540a784202d388a0b93ef4d7165f3990481edd2aa2f946')

 build() {
     cd "$srcdir/Project_CTR-makerom-v$pkgver/makerom"
@@ -18,5 +19,5 @@ build() {
 }

 package() {
-    install -Dm755 $srcdir/Project_CTR-makerom-v$pkgver/makerom/bin/makerom $pkgdir/usr/bin/makerom
+    install -Dm755 "$srcdir"/Project_CTR-makerom-v$pkgver/makerom/bin/makerom "$pkgdir"/usr/bin/makerom
 }