blob: 9ae92fb44e39ba42d233e4a1b87bcdd2166b21b5 (
plain)
1 # Description: GNU Midnight Commander
2 # URL: http://www.midnight-commander.org
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: util-linux glib
5
6 name=mc
7 version=4.8.20
8 release=1
9 source=(http://ftp.osuosl.org/pub/midnightcommander/$name-$version.tar.xz)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --libexecdir=/usr/lib \
16 --disable-nls \
17 --with-screen=ncurses
18
19 make
20 make DESTDIR=$PKG install
21
22 rm $PKG/usr/lib/mc/*/README*
23 }
|