# $Id: PKGBUILD 57569 2011-10-30 21:21:44Z bisson $ # Contributor: Daniel J Griffiths # Maintainer: schuay pkgname=mc pkgver=4.8.0 pkgrel=2 pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander" arch=('i686' 'x86_64') url="http://www.ibiblio.org/mc/" license=('GPL') depends=('e2fsprogs' 'glib2' 'pcre' 'gpm' 'slang') makedepends=('libxt' 'libx11') optdepends=('p7zip: support for 7zip archives' 'mtools: a+ extfs' 'cdparanoia: audio extfs' 'gawk: hp48+ extfs' 'cdrkit: iso9660 extfs' 'perl: needed by several extfs scripts' 'python-boto: s3+ extfs' 'python2-pytz: s3+ extfs' 'p7zip: u7z extfs' 'unace: uace extfs' 'unarj: uarj extfs' 'cabextract: ucab extfs' 'unrar: urar extfs' 'zip: uzip extfs') provides=('mcedit-pkgbuild-syntax') conflicts=('mc-utf8') replaces=('mc-utf8') options=('!emptydirs' '!makeflags') source=("http://www.midnight-commander.org/downloads/${pkgname}-${pkgver}.tar.bz2") md5sums=('592478c3edfa2ad64c8cd165b9bec446') sha1sums=('2584a681350e07d1e6703b9f7fd77cec45a6e061') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man \ --enable-background --enable-charset --enable-largefile \ --with-edit --with-gpm-mouse --with-mmap --enable-vfs-smb \ --with-screen=slang --with-subshell --with-vfs --with-x \ --without-debug --without-gnome --without-included-gettext \ --libexecdir=/usr/lib make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install # Fix FS#15177 sed 's|op_has_zipinfo = 0|op_has_zipinfo = 1|' \ -i "${pkgdir}/usr/lib/mc/extfs.d/uzip" sed 's#/usr/bin/env python#/usr/bin/python2#' \ -i "${pkgdir}/usr/lib/mc/extfs.d/s3+" }