diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/mc/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/mc/MAKEPKG')
| -rw-r--r-- | opt/mc/MAKEPKG | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/opt/mc/MAKEPKG b/opt/mc/MAKEPKG new file mode 100644 index 0000000..01b6d48 --- /dev/null +++ b/opt/mc/MAKEPKG @@ -0,0 +1,37 @@ +#!/bin/mkpkg +# description: A visual file manager +# url: https://midnight-commander.org + +name=mc +version=4.8.33 +release=1 +makedeps=(glib) +source=(https://ftp.osuosl.org/pub/midnightcommander/mc-4.8.33.tar.xz) + +sha256sums=( + "cae149d42f844e5185d8c81d7db3913a8fa214c65f852200a9d896b468af164c" +) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --with-screen=ncurses \ + --with-ssh \ + --without-x \ + --without-gpm \ + --disable-doxygen-doc + + make + make DESTDIR=$PKG install +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
