Package Details: mockoon-git 9.3.0.r0.geb55519-1

Git Clone URL: https://aur.archlinux.org/mockoon-git.git (read-only, click to copy)
Package Base: mockoon-git
Description: The easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source.Use system-wide electron.
Upstream URL: https://mockoon.com/
Keywords: api application desktop electron mock mock-api mock-data mock-server mocking mocking-server mocking-utility openapi openapi3 prototyping rest rest-api server swagger
Licenses: MIT
Conflicts: mockoon
Provides: mockoon
Submitter: zxp19821005
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 0
Popularity: 0.000000
First Submitted: 2024-01-31 01:18 (UTC)
Last Updated: 2025-07-01 00:58 (UTC)

Dependencies (6)

Required by (0)

Sources (2)

Latest Comments

PLuS commented on 2025-07-04 09:54 (UTC)

The desktop file created by gendesk uses "mockoon-git" (the pkgname) as exec, but the app is built as "mockoon".

This patch fixed it:

--- PKGBUILD.orig       2025-07-04 09:21:15.308429019 +0200
+++ PKGBUILD    2025-07-04 09:15:23.096218561 +0200
@@ -57,7 +57,7 @@
         --pkgdesc="${pkgdesc}" \
         --categories="Development" \
         --name="${pkgname%-git}" \
-        --exec="${pkgname} %U"
+        --exec="${pkgname%-git} %U"
     export ELECTRON_SKIP_BINARY_DOWNLOAD=1
     export SYSTEM_ELECTRON_VERSION="$(electron${_electronversion} -v | sed 's/v//g')"
     HOME="${srcdir}/.electron-gyp"