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). _______________________________________________ SlackBuilds-users mailing list [email protected] https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users Archives - https://lists.slackbuilds.org/pipermail/slackbuilds-users/ FAQ - https://slackbuilds.org/faq/
