2022-01-13 13:09:51 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=mc
|
2022-04-30 13:44:15 +00:00
|
|
|
version=4.8.28
|
2022-01-13 13:09:51 +00:00
|
|
|
useconfigure=true
|
2022-04-30 13:44:15 +00:00
|
|
|
files="http://ftp.midnight-commander.org/mc-${version}.tar.xz ${port}-${version}.tar.xz e994d9be9a7172e9ac4a4ad62107921f6aa312e668b056dfe5b8bcebbaf53803"
|
2022-01-13 13:09:51 +00:00
|
|
|
auth_type=sha256
|
|
|
|
depends=("gettext" "glib" "libtool" "ncurses" "vim")
|
|
|
|
configopts=(
|
|
|
|
"--disable-largefile"
|
|
|
|
"--disable-vfs"
|
|
|
|
"--without-edit"
|
|
|
|
"--without-x"
|
|
|
|
"--with-homedir"
|
|
|
|
"--with-screen=ncurses"
|
|
|
|
"--with-ncurses-includes=$SERENITY_BUILD_DIR/Root/usr/local/include/ncurses"
|
|
|
|
"--with-ncurses-libs=$SERENITY_BUILD_DIR/Root/usr/local/lib"
|
|
|
|
)
|
2022-04-30 00:42:46 +00:00
|
|
|
use_fresh_config_sub=true
|
2022-05-25 10:51:13 +00:00
|
|
|
config_sub_paths=("config/config.sub")
|