From af63b053a6a17019a7d81891867f696467131157 Mon Sep 17 00:00:00 2001 From: blue-devil Date: Wed, 9 Sep 2020 00:56:19 +0200 Subject: [PATCH] source highlight: first pisi release --- programming/misc/source-highlight/actions.py | 24 ++++++ programming/misc/source-highlight/pspec.xml | 76 +++++++++++++++++++ .../misc/source-highlight/translations.xml | 20 +++++ 3 files changed, 120 insertions(+) create mode 100644 programming/misc/source-highlight/actions.py create mode 100644 programming/misc/source-highlight/pspec.xml create mode 100644 programming/misc/source-highlight/translations.xml diff --git a/programming/misc/source-highlight/actions.py b/programming/misc/source-highlight/actions.py new file mode 100644 index 0000000000..0a8aaf5c48 --- /dev/null +++ b/programming/misc/source-highlight/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + autotools.configure("--prefix=/usr \ + --sysconfdir=/etc \ + --with-bash-completion=/usr/share/bash-completion/completions") + + # fix unused direct dependency analysis + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s bash_completiondir=/usr/share/bash-completion/completions" % get.installDIR()) + pisitools.dodoc("COPYING*", "README*") \ No newline at end of file diff --git a/programming/misc/source-highlight/pspec.xml b/programming/misc/source-highlight/pspec.xml new file mode 100644 index 0000000000..6e8eeba727 --- /dev/null +++ b/programming/misc/source-highlight/pspec.xml @@ -0,0 +1,76 @@ + + + + + source-highlight + https://www.gnu.org/software/src-highlite/ + + Blue DeviL + bluedevil@sctzine.com + + programming.misc + GPL + app::console + Source code to syntax highlighted document converter. + source-highlight, given a source file, produces a document with syntax highlighting. It also provides a C++ highlight library. + https://ftp.gnu.org/gnu/src-highlite/source-highlight-3.1.9.tar.gz + + ctags + boost-devel + + + + + source-highlight + app::console + Source code to syntax highlighted document converter. + + boost + + + /usr/share/man + /usr/bin + /usr/share/info + /usr/share/source-highlight + /usr/lib/libsource-highlight* + /usr/share/bash-completion/completions/source-highlight + + + + + source-highlight-devel + library + Development headers for source-highlight + source-highlight-devel provides development headers for source-highlight. + + source-highlight + + + /usr/include + /usr/lib/pkgconfig + + + + + source-highlight-docs + data:doc + Documentation files for source-highlight + source-highlight-docs provides documentation files for source-highlight. + + source-highlight + + + /usr/share/doc/source-highlight + + + + + + 2020-09-07 + 3.1.9 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + \ No newline at end of file diff --git a/programming/misc/source-highlight/translations.xml b/programming/misc/source-highlight/translations.xml new file mode 100644 index 0000000000..41f01e6136 --- /dev/null +++ b/programming/misc/source-highlight/translations.xml @@ -0,0 +1,20 @@ + + + + source-highlight + Kaynak koddan sözdizim renklendirmesi olan belgeye çeviriciç + source-highlight, verilen kaynak kodu sözdizim kurallarına göre renklendirip belgeye çeviren yazılımdır. + + + + source-highlight-devel + source-highlight için geliştirme dosyaları + source-highlight-devel, source-highlight için geliştirme dosyalarını içerir. + + + + source-highlight-docs + source-highlight için belgelendirme dosyaları + source-highlight-docs, source-highlight için belgelendirme dosyalarını içerir. + + \ No newline at end of file