From d685e07d32c323c78d293566429b71c508e55954 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Mon, 20 Jun 2022 00:26:21 -0400 Subject: [PATCH] Clarify that the Fedora package must be built using Fedora Former-commit-id: 872539a685e693ad39e98dc7147fb03b14b03799 [formerly 4b77990d97b394d57eeb5e09bd99d7c586a9582b] Former-commit-id: fb405f8b9845c1b14def2e4be7a865e158937042 --- package.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.sh b/package.sh index 2c402f6..fe58d30 100755 --- a/package.sh +++ b/package.sh @@ -1,13 +1,14 @@ #!/bin/bash -# This script packages sshyp (from source) for various UNIX environments. -# Dependencies (Arch Linux): dpkg (packaging for Debian/Termux), rpmdevtools (packaging for Red Hat), freebsd-pkg (packaging for FreeBSD) +# This script packages sshyp (from source) for various UNIX(-like) environments. +# Dependencies (Arch Linux): dpkg (packaging for Debian/Termux), freebsd-pkg (packaging for FreeBSD) +# Dependencies (Fedora) (can only package for self): rpmdevtools # NOTE It is recommended to instead use the latest officially packaged and tagged release. echo -e '\nOptions (please enter the number only):' echo -e '\nPackage Formats:\n\n1. Haiku\n2. Debian&Ubuntu Linux\n3. Fedora Linux\n4. FreeBSD\n5. Termux\n6. Generic (used for PKGBUILD/APKBUILD)' echo -e '\nBuild Scripts:\n\n7. Arch Linux (PKGBUILD)' -echo -e '\nOther:\n\n8. All (generates all distribution packages (excluding Haiku, as this must be done on Haiku) and build scripts)\n' +echo -e '\nOther:\n\n8. All (generates all distribution packages (excluding Haiku and Fedora, as these must be packaged on their respective distributions) and build scripts)\n' read -n 1 -r -p "Distribution: " distro echo -e '\n\nThe value entered in this field will only affect the version reported to the package manager. The latest source is used regardless.\n'