With these scripts, I successfully automated the compiling and packaging of various programs, using CRUX build scripts (the "Pkgfiles") or Arch Linux PKGBUILD scripts.
... Both distros have a bunch of build scripts we can pilfer.
So.. Can we please do something like this in petbuild:
case $filename in
*.petbuild) // the usual ;;
*/arch/*PKGBUILD) // run arch PKGBUILD compiler routine ;;
*/crux/*Pkgfile) // run CRUX Pkgfile compiler routine ;;
*.slackbuild) // run SBoPkg or a slackbuild (or whatever) ;;
esac
I meant to share this here earlier:
With these scripts, I successfully automated the compiling and packaging of various programs, using CRUX build scripts (the "Pkgfiles") or Arch Linux PKGBUILD scripts.
... Both distros have a bunch of build scripts we can pilfer.
So.. Can we please do something like this in petbuild: