mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
27 lines
767 B
Bash
27 lines
767 B
Bash
# $Id:4
|
|
# Maintainer: Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
|
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
|
|
|
|
pkgname=mc-colorer
|
|
pkgver=20060530_0.9
|
|
pkgrel=3
|
|
_realname="mccolorer-20060530-0.9"
|
|
pkgdesc="Midnight Commander mod with Colorer-take5 syntax engine"
|
|
arch=('i686' 'x86_64')
|
|
url="http://colorer.sourceforge.net/mc.html"
|
|
license=("GPL")
|
|
depends=('e2fsprogs' 'glib2' 'gpm' 'colorer')
|
|
conflicts=('mc')
|
|
provides=('mc')
|
|
source=(http://downloads.sourceforge.net/sourceforge/colorer/$_realname.tar.bz2)
|
|
md5sums=('83ffea150d6853cbc8a9422d5c21542c')
|
|
|
|
build() {
|
|
cd $startdir/src/$_realname
|
|
./configure --prefix=/usr --with-x --libexecdir=/usr/lib/mc-colorer \
|
|
--mandir=/usr/share || return 0
|
|
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|
|
|