mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Ports/nano: Use sha256 to check the downloaded file
This commit is contained in:
parent
2714e58b52
commit
6d1ec983a4
Notes:
sideshowbarker
2024-07-17 10:23:39 +09:00
Author: https://github.com/EWouters Commit: https://github.com/SerenityOS/serenity/commit/6d1ec983a4 Pull-request: https://github.com/SerenityOS/serenity/pull/14179 Reviewed-by: https://github.com/IdanHo Reviewed-by: https://github.com/linusg Reviewed-by: https://github.com/timschumi
1 changed files with 4 additions and 7 deletions
|
@ -1,14 +1,11 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='nano'
|
||||
version='6.3'
|
||||
useconfigure="true"
|
||||
use_fresh_config_sub=true
|
||||
files="https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz nano-${version}.tar.xz
|
||||
https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz.asc nano-${version}.tar.xz.asc"
|
||||
files="https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz nano-${version}.tar.xz eb532da4985672730b500f685dbaab885a466d08fbbf7415832b95805e6f8687"
|
||||
auth_type='sha256'
|
||||
useconfigure='true'
|
||||
use_fresh_config_sub='true'
|
||||
configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--disable-browser" "--disable-utf8")
|
||||
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"
|
||||
|
|
Loading…
Reference in a new issue