Search Criteria
Package Details: ella 0.0.9-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/ella.git (read-only, click to copy) |
|---|---|
| Package Base: | ella |
| Description: | A process manager for running and managing services |
| Upstream URL: | https://github.com/thekhanj/ella |
| Keywords: | aarch64 arm armv6h go process-manager x86_64 |
| Licenses: | MIT |
| Conflicts: | ella-bin |
| Submitter: | TheKhanj |
| Maintainer: | TheKhanj |
| Last Packager: | TheKhanj |
| Votes: | 1 |
| Popularity: | 0.006045 |
| First Submitted: | 2025-09-09 06:10 (UTC) |
| Last Updated: | 2025-09-14 01:48 (UTC) |
Dependencies (1)
- go (go-gitAUR, gcc-go-gitAUR, go-binAUR, goup-rsAUR, gcc-go-snapshotAUR, gcc-go) (make)
Latest Comments
TheKhanj commented on 2025-09-10 20:50 (UTC)
Awww 🥹🥹, my first comment :)) Thanks I will :)
envolution commented on 2025-09-10 20:41 (UTC) (edited on 2025-09-10 20:42 (UTC) by envolution)
You should probably be using $CARCH,
source_x86_64=,source_aarch64=, etc.sha256sums_x86_64=,sha256sums_aarch64=, etc. instead of your scripted logic as makepkg already specifies that. feel free to refer toaur/rapidraw-binas an exampleThe tar.gz binary is automatically extracted by makepkg unless
noextract=(...is explicitly set, so your package function shouldn't need to do that.Shasums can be properly populated by
updpkgsumsfrom pacman-contrib, i believe it's an independent shell script that doesn't need alpm. performing network functions outside of prepare/build is probably not a good idea anyways - so ideally this would be done while updating pkgver/rel (external to the PKGBUILD)Lastly, this package provides binaries, so it should have the
-binsuffix.I'd suggest you have a good read through https://wiki.archlinux.org/title/PKGBUILD and https://wiki.archlinux.org/title/AUR_submission_guidelines and make the appropriate fixes