summaryrefslogtreecommitdiffstats
path: root/highlight/PKGBUILD
blob: 136b3d1a3768d963438f76ba9cff9fde765a86b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Contributor: Jan Fader <jan.fader@web.de>
pkgname=highlight
pkgver=3.1
pkgver2=beta
pkgrel=1
pkgdesc="Highlight converts sourcecode to HTML, XHTML, RTF, LaTeX, TeX, XML and terminal escape sequences with coloured syntax highlighting. Language definitions, colour themes and indentation schemes are customizable"
url="http://www.andre-simon.de/doku/highlight/highlight.html"
license=('GPL')
arch=('i686' 'x86_64')
depends=('boost')
install=
source=(http://www.andre-simon.de/zip/$pkgname-$pkgver-$pkgver2.tar.bz2 make.patch)
md5sums=('477cd7d61a6a8f665b5bdda4d75ba40f' '070f85f21eebf7afd89ab2a8d83e08d2')

build() {
  cd "$srcdir/$pkgname-$pkgver-$pkgver2"
  patch -i $srcdir/make.patch

  make || return 1
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: