This commit is contained in:
4fury-c3440d8
2023-02-24 06:29:40 +03:00
parent 99f93e3ff4
commit 6f251d2564
2 changed files with 65 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pisitools
def install():
pisitools.dobin("bin/pandoc")
pisitools.dosym("pandoc", "/usr/bin/pandoc-lua")
pisitools.dosym("pandoc", "/usr/bin/pandoc-server")
pisitools.doman("share/man/man1/pandoc.1.gz")
pisitools.doman("share/man/man1/pandoc-lua.1.gz")
pisitools.doman("share/man/man1/pandoc-server.1.gz")
+49
View File
@@ -0,0 +1,49 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pandoc-bin</Name>
<Homepage>https://pandoc.org/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>GPL-2</License>
<IsA>app:console</IsA>
<PartOf>office.docbook</PartOf>
<Summary>Universal markup converter.</Summary>
<Description>
Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses this library.
</Description>
<Archive sha1sum="0b21318a504e733bb2530cc70f6d3b94dd330d1f" type="targz">
https://github.com/jgm/pandoc/releases/download/3.1/pandoc-3.1-linux-amd64.tar.gz
</Archive>
<BuildDependencies>
<!-- <Dependency></Dependency> -->
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>pandoc-bin</Name>
<RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="manpages">/usr/share/man/man1</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-02-13</Date>
<Version>3.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>