opt/mc/Pkgfile

28 lines
618 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GNU Midnight Commander
2009-02-12 13:59:19 +01:00
# URL: http://www.midnight-commander.org
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2009-12-28 10:55:50 +01:00
# Depends on: ncurses glib
2006-02-23 16:26:10 +01:00
name=mc
2012-09-11 11:02:13 +02:00
version=4.8.5
2012-09-14 11:06:53 +02:00
release=2
source=(http://www.midnight-commander.org/downloads/$name-$version.tar.xz
mcedit.diff)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2009-02-12 13:59:19 +01:00
2012-09-14 11:06:53 +02:00
patch -p0 -i $SRC/mcedit.diff
2009-02-12 13:59:19 +01:00
./configure --prefix=/usr \
--mandir=/usr/man \
--libexecdir=/usr/lib \
2009-12-28 10:55:50 +01:00
--disable-nls \
--with-screen=ncurses
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2009-02-12 13:59:19 +01:00
2011-04-12 09:09:43 +02:00
rm $PKG/usr/lib/mc/*/README*
2006-02-23 16:26:10 +01:00
}