blob: 208785d11b2b42bfec5e23d42110a4d3903fd8bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Contributor: Jan Fader <jan.fader@web.de>
pkgname=highlight
pkgver=2.15
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')
install=
source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2)
md5sums=('56a6341a16bbf059e0182c21d3b8aa76')
build() {
cd "$startdir/src/$pkgname-$pkgver"
make || return 1
make DESTDIR="$startdir/pkg" install
}
# vim:set ts=2 sw=2 et:
|