mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-24 10:01:38 +01:00
27 lines
766 B
Plaintext
27 lines
766 B
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
_luaver=5.3
|
|
pkgname=highlight
|
|
pkgver=3.50
|
|
pkgrel=0
|
|
pkgdesc="Fast and flexible source code highlighter"
|
|
url="http://www.andre-simon.de/doku/highlight/highlight.html"
|
|
arch="all"
|
|
options="!check" # No test suite.
|
|
license="GPL-3.0-or-later"
|
|
makedepends="lua${_luaver}-dev boost-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make cli LUAPC=lua${_luaver}
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="1911a29fea6a157ff237276673acf0ae2b5a931ad7beeacf26a67970fc5ec66abf6dc64ff1694bf0cf68414c29f597625700943da772823a025f7a139d606c3d highlight-3.50.tar.bz2"
|