2020-06-07 14:32:41 +00:00
|
|
|
# Description: Source code to formatted text converter
|
|
|
|
# URL: http://www.andre-simon.de/doku/highlight/en/highlight.php
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-06-08 19:15:14 +00:00
|
|
|
# Depends on: lua boost
|
2020-06-07 14:32:41 +00:00
|
|
|
|
|
|
|
name=highlight
|
2024-05-24 23:54:29 +02:00
|
|
|
version=4.12
|
2020-06-07 14:32:41 +00:00
|
|
|
release=1
|
2021-02-14 13:44:53 +00:00
|
|
|
source=(http://www.andre-simon.de/zip/$name-$version.tar.bz2)
|
2020-06-07 14:32:41 +00:00
|
|
|
|
|
|
|
build() {
|
2020-06-08 19:15:14 +00:00
|
|
|
cd $name-$version
|
2022-10-01 23:38:06 +02:00
|
|
|
|
2020-06-07 14:32:41 +00:00
|
|
|
make
|
|
|
|
make cli
|
2022-10-01 23:38:06 +02:00
|
|
|
|
2020-06-07 14:32:41 +00:00
|
|
|
make DESTDIR=${PKG} install
|
2022-10-01 23:38:06 +02:00
|
|
|
|
|
|
|
prt-get isinst bash-completion || rm -r $PKG/usr/share/bash-completion
|
|
|
|
prt-get isinst fish || rm -r $PKG/usr/share/fish
|
|
|
|
prt-get isinst zsh || rm -r $PKG/usr/share/zsh
|
|
|
|
|
2020-06-07 14:32:41 +00:00
|
|
|
rm -rf ${PKG}/usr/share/doc
|
|
|
|
}
|