Package Details: process-compose 1.46.0-1

Git Clone URL: https://aur.archlinux.org/process-compose.git (read-only, click to copy)
Package Base: process-compose
Description: Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized applications.
Upstream URL: https://github.com/F1bonacc1/process-compose
Licenses: MIT
Submitter: Remolacha
Maintainer: Remolacha
Last Packager: Remolacha
Votes: 0
Popularity: 0.000000
First Submitted: 2025-02-28 23:02 (UTC)
Last Updated: 2025-02-28 23:02 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

GGORG commented on 2026-01-29 10:15 (UTC) (edited on 2026-01-29 10:27 (UTC) by GGORG)

This package has been out of date for a long time, and the build process changed. (the main file is now ./main.go instead of ./src/main.go) Also, the license in the PKGBUILD is wrong - this project has been licensed under Apache-2.0 since the beginning.

diff --git a/PKGBUILD b/PKGBUILD
index 8abcda6..5a5721b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
 # Maintainer: Luis Sanchez <dceluis@outlook.com>
 pkgname=process-compose
-pkgver=1.46.0
+pkgver=1.87.0
 pkgrel=1
 pkgdesc="Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized applications."
 arch=('x86_64')
 url="https://github.com/F1bonacc1/process-compose"
-license=('MIT')
+license=('Apache-2.0')
 options=('!debug')
-makedepends=('go>=1.22.0')
+makedepends=('go>=1.24.0')
 source=("${pkgname}-${pkgver}.tar.gz::https://github.com/F1bonacc1/process-compose/archive/refs/tags/v${pkgver}.tar.gz")
 sha256sums=('SKIP')

@@ -25,7 +25,7 @@ build() {
   export CGO_LDFLAGS="${LDFLAGS}"
   export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"

-  go build -o build/$pkgname ./src/main.go
+  go build -o build/$pkgname ./main.go
 }

 check() {