source highlight: first pisi release
This commit is contained in:
@@ -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*")
|
||||
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>source-highlight</Name>
|
||||
<Homepage>https://www.gnu.org/software/src-highlite/</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.misc</PartOf>
|
||||
<License>GPL</License>
|
||||
<IsA>app::console</IsA>
|
||||
<Summary>Source code to syntax highlighted document converter.</Summary>
|
||||
<Description>source-highlight, given a source file, produces a document with syntax highlighting. It also provides a C++ highlight library.</Description>
|
||||
<Archive sha1sum="233e37b011ba1a5e57f674dd0077d505306bc3e4" type="targz">https://ftp.gnu.org/gnu/src-highlite/source-highlight-3.1.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ctags</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>source-highlight</Name>
|
||||
<IsA>app::console</IsA>
|
||||
<Summary>Source code to syntax highlighted document converter.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>boost</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/info</Path>
|
||||
<Path fileType="data">/usr/share/source-highlight</Path>
|
||||
<Path fileType="library">/usr/lib/libsource-highlight*</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion/completions/source-highlight</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>source-highlight-devel</Name>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Development headers for source-highlight</Summary>
|
||||
<Description>source-highlight-devel provides development headers for source-highlight.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">source-highlight</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>source-highlight-docs</Name>
|
||||
<IsA>data:doc</IsA>
|
||||
<Summary>Documentation files for source-highlight</Summary>
|
||||
<Description>source-highlight-docs provides documentation files for source-highlight.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">source-highlight</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/source-highlight</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-09-07</Date>
|
||||
<Version>3.1.9</Version>
|
||||
<Comment>First pisi release</Comment>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>source-highlight</Name>
|
||||
<Summary xml:lang="tr">Kaynak koddan sözdizim renklendirmesi olan belgeye çeviriciç</Summary>
|
||||
<Description xml:lang="tr">source-highlight, verilen kaynak kodu sözdizim kurallarına göre renklendirip belgeye çeviren yazılımdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>source-highlight-devel</Name>
|
||||
<Summary xml:lang="tr">source-highlight için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">source-highlight-devel, source-highlight için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>source-highlight-docs</Name>
|
||||
<Summary xml:lang="tr">source-highlight için belgelendirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">source-highlight-docs, source-highlight için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user