[Slackbuilds-users] Issues with new scripts for crelay
B. Watson
urchlay at slackware.uk
Sun Nov 20 22:55:30 UTC 2022
On Sun, 20 Nov 2022, Robby Workman wrote:
> It appears to only install a single binary (see line 12 of Makefile).
> Easiest thing to do is just:
>
> make
> mkdir $PKG/usr/bin
> cat crelay > $PKG/usr/bin/crelay
> chmod 0755 $PKG/usr/bin/crelay
Don't forget to the strip the binary (unless the Makefile already
does). Personally I like:
make
mkdir -p $PKG/usr/bin
install -s -m0755 crelay $PKG/usr/bin/crelay
...explicitly sets the permissions, and the -s means "strip" (does it
all in one go).
More information about the SlackBuilds-users
mailing list