This commit is contained in:
Rmys
2020-03-08 13:35:31 +03:00
parent 4d5f51e37c
commit b5df5b6990
14 changed files with 443 additions and 30 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/env 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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.system("mkdir build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMARK_STATIC=OFF \
-DCMAKE_INSTALL_LIBDIR=lib", sourceDir = '..')
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("COPYING", "README*")
+62
View File
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cmark</Name>
<Homepage>https://github.com/jgm/cmark</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD2</License>
<IsA>library</IsA>
<Summary>CommonMark parsing and rendering library and program in C</Summary>
<Description>CommonMark parsing and rendering library and program in C</Description>
<Archive sha1sum="d294240c6f889beb14936f75f8183a2bc19a1ab8" type="targz">https://github.com/commonmark/cmark/archive/0.29.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
<!--
<Patches>
<Patch>cmark.patch</Patch>
<Patch level="1">cmark.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>cmark</Name>
<RuntimeDependencies>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>cmark-devel</Name>
<Summary>Development files for cmark</Summary>
<RuntimeDependencies>
<Dependency release="current">cmark</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-03-08</Date>
<Version>0.29.0</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>cmark</Name>
<Summary xml:lang="tr">CommonMark parsing and rendering library and program in C</Summary>
<Description xml:lang="tr">CommonMark parsing and rendering library and program in C</Description>
</Source>
</PISI>