blob: 01b6d489b2f8a11c12b52a90cdfb121035debf41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|