summaryrefslogtreecommitdiffstats
path: root/mc/Pkgfile
blob: f3bf60f3a937ab747c5464f2245e9d77a7cfa036 (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
38
39
# Description: Gestionnaire de fichiers en ligne de commande comme Norton commander
# URL: http://www.ibiblio.org/mc/
# Maintainer: NuTyX coreteam
# Packager: thierryn1 at hispeed dot ch
# Depends on : glib,slang
# Run on:glib,slang
name=mc
version=4.7.5
release=1
source=(http://www.midnight-commander.org/downloads/$name-$version.tar.bz2)

build() {
	cd $name-$version
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--enable-background \
		--enable-charset \
		--enable-largefile \
		--with-edit \
		--with-gpm-mouse \
		--with-mmap \
		--with-samba \
		--with-screen=slang \
		--with-subshell \
		--with-vfs \
		--with-x \
		--without-debug \
		--without-gnome \
		--without-included-gettext \
		--libexecdir=/usr/lib

	make
	make DESTDIR=$PKG install
        sed -i 's|op_has_zipinfo = 0|op_has_zipinfo = 1|' \
            $PKG/usr/lib/mc/extfs.d/uzip
        rm $PKG/usr/lib/mc/extfs.d/u7z
}