immer: new package for krita
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/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("-DCMAKE_INSTALL_PREFIX=/usr")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>immer</Name>
|
||||
<Homepage>https://sinusoid.es/immer</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>boost</License>
|
||||
<Icon></Icon>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Postmodern immutable and persistent data structures for C++</Summary>
|
||||
<Description>immer is a library of persistent and immutable data structures written in C++. These enable whole new kinds of architectures for interactive and concurrent programs of striking simplicity, correctness, and performance.</Description>
|
||||
<Archive sha1sum="3ab24d01bc6952f5fc0258020271db74f9d30585" type="targz">https://github.com/arximboldi/immer/archive/refs/tags/v0.8.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>catch2</Dependency>
|
||||
<Dependency>ccache</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>guile-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>immer</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency>libgcc</Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/immer</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/cmake/Immer</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-11-01</Date>
|
||||
<Version>0.8.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>immer</Name>
|
||||
<Summary xml:lang="tr">C++ için postmodern değişmez ve kalıcı veri yapıları</Summary>
|
||||
<Description xml:lang="tr">immer, C++ ile yazılmış kalıcı ve değişmez veri yapılarından oluşan bir kütüphanedir. Bunlar, çarpıcı basitlik, doğruluk ve performansa sahip etkileşimli ve eşzamanlı programlar için tamamen yeni mimari türlerine olanak tanır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user