# $Id: PKGBUILD 191561 2016-10-07 15:41:12Z schuay $ # Maintainer (Arch): schuay # Contributor (Arch): Daniel J Griffiths # Maintainer: André Silva # Contributor: Márcio Silva pkgname=mc pkgver=4.8.18 pkgrel=1.parabola1 pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander, with arj recommendation included and nonfree unace and unrar support removed" arch=('i686' 'x86_64' 'armv7h') url="http://www.ibiblio.org/mc/" license=('GPL') depends=('e2fsprogs' 'glib2' 'gpm' 'libssh2' 'slang') makedepends=('libxt' 'libx11' 'unzip') optdepends=('aspell: spelling corrections' 'cabextract: ucab extfs' 'cdparanoia: audio extfs' 'cdrkit: iso9660 extfs' 'cvs: CVS support' 'gawk: hp48+ extfs' 'mtools: a+ extfs' 'p7zip: support for 7zip archives' 'perl: needed by several extfs scripts' 'python2-boto: s3+ extfs' 'python2-pytz: s3+ extfs' 'samba: VFS support' 'arj: uarj extfs' 'zip: uzip extfs') conflicts=('mc-libre') replaces=('mc-libre') backup=('etc/mc/edit.indent.rc' 'etc/mc/filehighlight.ini' 'etc/mc/mc.ext' 'etc/mc/mc.keymap' 'etc/mc/mc.menu' 'etc/mc/mcedit.menu' 'etc/mc/sfs.ini') options=('!emptydirs') source=("http://ftp.midnight-commander.org/${pkgname}-${pkgver}.tar.xz" 'libre.patch') sha256sums=('f7636815c987c1719c4f5de2dcd156a0e7d097b1d10e4466d2bdead343d5bece' 'a72558445fd1558e18d0fb0be767f4460d04130e80cd87ad84b376fab1b66357') prepare() { cd ${pkgname}-${pkgver} patch -Np1 -i ../libre.patch rm -v src/vfs/extfs/helpers/u{ace,rar}.in } build() { export PYTHON=/usr/bin/python2 cd ${pkgname}-${pkgver} ./configure \ --prefix=/usr \ --libexecdir=/usr/lib \ --sysconfdir=/etc \ --enable-vfs-smb \ --with-x make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install # Replace mc.keymap symlink with target file to fix backup mechanism (FS#50889). rm "${pkgdir}"/etc/mc/mc.keymap && cp "${pkgdir}"/etc/mc/mc{.default,}.keymap }