1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:07:45 +00:00

Ports/nano: Use sha256 to check the downloaded file

This commit is contained in:
EWouters 2022-06-07 14:04:08 +02:00 committed by Linus Groh
parent 2714e58b52
commit 6d1ec983a4

View file

@ -1,14 +1,11 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port='nano' port='nano'
version='6.3' version='6.3'
useconfigure="true" files="https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz nano-${version}.tar.xz eb532da4985672730b500f685dbaab885a466d08fbbf7415832b95805e6f8687"
use_fresh_config_sub=true auth_type='sha256'
files="https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz nano-${version}.tar.xz useconfigure='true'
https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz.asc nano-${version}.tar.xz.asc" use_fresh_config_sub='true'
configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--disable-browser" "--disable-utf8") configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--disable-browser" "--disable-utf8")
depends=("ncurses") depends=("ncurses")
auth_type="sig"
auth_import_key="BFD009061E535052AD0DF2150D28D4D2A0ACE884"
auth_opts=("nano-${version}.tar.xz.asc" "nano-${version}.tar.xz")
export PKG_CONFIG_PATH="${SERENITY_INSTALL_ROOT}/usr/local/lib/pkgconfig" export PKG_CONFIG_PATH="${SERENITY_INSTALL_ROOT}/usr/local/lib/pkgconfig"