mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
Ports: Update dmidecode version to 3.4
Also, let's stop use the signature file and instead just compare sha256 checksums.
This commit is contained in:
parent
33ce7c939a
commit
8edde0709a
Notes:
sideshowbarker
2024-07-18 00:54:03 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/8edde0709a Pull-request: https://github.com/SerenityOS/serenity/pull/15510 Reviewed-by: https://github.com/timschumi ✅
2 changed files with 4 additions and 8 deletions
|
@ -38,7 +38,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash |
|
||||
| [`dialog`](dialog/) | Dialog | 1.3-20220526 | https://invisible-island.net/dialog/ |
|
||||
| [`diffutils`](diffutils/) | GNU Diffutils | 3.8 | https://www.gnu.org/software/diffutils/ |
|
||||
| [`dmidecode`](dmidecode/) | dmidecode | 3.3 | https://github.com/mirror/dmidecode |
|
||||
| [`dmidecode`](dmidecode/) | dmidecode | 3.4 | https://github.com/mirror/dmidecode |
|
||||
| [`doom`](doom/) | DOOM | | https://github.com/SerenityOS/SerenityDOOM |
|
||||
| [`dos2unix`](dos2unix/) | dos2unix | 7.4.3 | https://waterlan.home.xs4all.nl/dos2unix.html |
|
||||
| [`dosbox-staging`](dosbox-staging/) | DOSBox Staging | 0.76.0 | https://dosbox-staging.github.io/ |
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port='dmidecode'
|
||||
version='3.3'
|
||||
version='3.4'
|
||||
useconfigure='false'
|
||||
files="https://download.savannah.gnu.org/releases/dmidecode/dmidecode-${version}.tar.xz dmidecode-${version}.tar.xz
|
||||
https://download.savannah.gnu.org/releases/dmidecode/dmidecode-${version}.tar.xz.sig dmidecode-${version}.tar.xz.sig
|
||||
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
|
||||
auth_type='sig'
|
||||
auth_import_key='90DFD6523C57373D81F63D19865688D038F02FC8'
|
||||
auth_opts=("--keyring" "./gnu-keyring.gpg" "dmidecode-${version}.tar.xz.sig")
|
||||
files="https://download.savannah.gnu.org/releases/dmidecode/dmidecode-${version}.tar.xz dmidecode-${version}.tar.xz 43cba851d8467c9979ccdbeab192eb6638c7d3a697eba5ddb779da8837542212"
|
||||
auth_type='sha256'
|
||||
|
||||
install() {
|
||||
run make clean
|
||||
|
|
Loading…
Reference in a new issue