blob: 11597a359660cbbe20d2dc04c7d650ca40eeb67d (
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.22
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 }
|