25 lines
612 B
Plaintext
25 lines
612 B
Plaintext
# Description: GNU Midnight Commander
|
|
# URL: http://www.midnight-commander.org
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: ncurses glib
|
|
|
|
name=mc
|
|
version=4.7.5
|
|
release=1
|
|
source=(http://www.midnight-commander.org/downloads/$name-$version.tar.lzma)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libexecdir=/usr/lib \
|
|
--disable-nls \
|
|
--with-screen=ncurses
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm $PKG/usr/{share/mc/hints/mc.hint.*,lib/mc/*/README*}
|
|
}
|