diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-04-30 15:44:15 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-03 22:17:28 +0200 |
commit | 7eb8d13f84d5f185837951da5c4515deb9b5dc4f (patch) | |
tree | 25f4842b1ed39f906f66ed2a575da29d29b05739 /Ports/mc | |
parent | 365caec2e2ddfc856856ffa7a97a63a5068874ff (diff) | |
download | serenity-7eb8d13f84d5f185837951da5c4515deb9b5dc4f.zip |
Ports: Update `mc` to 4.8.28
This also switches us from the GitHub tag archive to using the actual
release tarballs, which don't require us to run autoconf anymore.
Diffstat (limited to 'Ports/mc')
-rwxr-xr-x | Ports/mc/package.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Ports/mc/package.sh b/Ports/mc/package.sh index c67a55f7e8..93c1fe3259 100755 --- a/Ports/mc/package.sh +++ b/Ports/mc/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=mc -version=4.8.27 +version=4.8.28 useconfigure=true -files="https://github.com/MidnightCommander/mc/archive/refs/tags/${version}.tar.gz ${port}-${version}.tar.gz 3bab1460d187e1f09409be4bb8550ea7dab125fb9b50036a8dbd2b16e8b1985b" +files="http://ftp.midnight-commander.org/mc-${version}.tar.xz ${port}-${version}.tar.xz e994d9be9a7172e9ac4a4ad62107921f6aa312e668b056dfe5b8bcebbaf53803" auth_type=sha256 depends=("gettext" "glib" "libtool" "ncurses" "vim") configopts=( @@ -17,7 +17,3 @@ configopts=( ) use_fresh_config_sub=true config_sub_path=config/config.sub - -pre_patch() { - run ./autogen.sh -} |