simdjson new package
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#!/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 get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DBUILD_SHARED_LIBS='On' \
|
||||
-DCMAKE_INSTALL_PREFIX='/usr' \
|
||||
-DCPM_USE_LOCAL_PACKAGES='On' \
|
||||
-DSIMDJSON_DEVELOPER_MODE='On' \
|
||||
-DSIMDJSON_ALLOW_DOWNLOADS='Off' \
|
||||
")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS*", "LICENSE*", "README*")
|
||||
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>simdjson</Name>
|
||||
<Homepage>https://github.com/simdjson/simdjson</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache-2.0</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A C++ library to see how fast we can parse JSON with complete validation</Summary>
|
||||
<Description>JSON'u tam doğrulama ile ne kadar hızlı ayrıştırabileceğimizi görmek için kullanılan bir C++ kütüphanesi.</Description>
|
||||
<Archive sha1sum="99addd519e052b13757f2dcde90ba7cd3c988608" type="targz">https://github.com/simdjson/simdjson/archive/refs/tags/v4.6.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>simdjson.patch</Patch>
|
||||
<Patch level="1">simdjson.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>simdjson</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<!--
|
||||
<Package>
|
||||
<Name>simdjson-devel</Name>
|
||||
<Summary>Development files for simdjson</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">simdjson</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>2026-05-22</Date>
|
||||
<Version>4.6.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>simdjson</Name>
|
||||
<Summary xml:lang="tr">A C++ library to see how fast we can parse JSON with complete validation</Summary>
|
||||
<Description xml:lang="tr">JSON'u tam doğrulama ile ne kadar hızlı ayrıştırabileceğimizi görmek için kullanılan bir C++ kütüphanesi.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user