Search Criteria
Package Details: gomatrix-git 101.0.0.r2.gb3aff13-3
Package Actions
Git Clone URL: | https://aur.archlinux.org/gomatrix-git.git (read-only, click to copy) |
---|---|
Package Base: | gomatrix-git |
Description: | gomatrix connects to the The Matrix and displays its data streams in your terminal |
Upstream URL: | https://github.com/GeertJohan/gomatrix |
Keywords: | cmatrix go matrix terminal |
Licenses: | BSD-2 |
Conflicts: | gomatrix |
Provides: | gomatrix |
Submitter: | L0-FF |
Maintainer: | ramen |
Last Packager: | ramen |
Votes: | 3 |
Popularity: | 0.000004 |
First Submitted: | 2020-12-09 06:02 (UTC) |
Last Updated: | 2022-08-27 15:01 (UTC) |
Dependencies (2)
- git (git-gitAUR, git-glAUR) (make)
- go (go-gitAUR, gcc-go-gitAUR, go-sylixosAUR, gcc-go-snapshotAUR, gcc-go) (make)
Latest Comments
ramen commented on 2022-08-27 14:42 (UTC)
I updated the PKGBUILD. Let me know if something does not work.
L0-FF commented on 2022-05-19 20:10 (UTC)
All,
Apologies for the delays.
I'll update shortly. I need to sync with upstream and confirm what's changed.
hxr404 commented on 2022-01-18 15:45 (UTC) (edited on 2022-01-18 15:45 (UTC) by hxr404)
There is an issue with your PKGBUILD. (It doesn't compile)
In prepare() you are using the $GOPATH environment variable, but at the time prepare() is executed, $GOPATH isn't set yet. (In line 25, the chmod command)
($GOPATH is being exported in line 61)
VoxelCubes commented on 2021-07-14 01:38 (UTC) (edited on 2021-07-14 01:39 (UTC) by VoxelCubes)
The build script is currently broken, but can easily be fixed:
Simply remove the line
chmod u+w -R "$GOPATH"
from the package() function.On a side note, the upstream link is also broken, it should be https://github.com/GeertJohan/gomatrix (remove the git+ from the beginning).
That aside, it looks pretty close to the original Matrix movie's code rain, very cool.
ssharpjr commented on 2021-06-08 18:32 (UTC) (edited on 2021-06-08 18:32 (UTC) by ssharpjr)
Fails to prepare. There is no $GOPATH variable.
prepare(){
cd "$_pkgname"
mkdir -p build/
chmod u+w -R "$GOPATH"