new packages for krita: zug, lager
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#!/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 \
|
||||
-Dlager_BUILD_EXAMPLES=OFF \
|
||||
-Dlager_BUILD_TESTS=OFF")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lager</Name>
|
||||
<Homepage>https://sinusoid.es/lager</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>boost</License>
|
||||
<Icon>lager</Icon>
|
||||
<IsA>library</IsA>
|
||||
<Summary>C++ library for value-oriented design using the unidirectional data-flow architecture</Summary>
|
||||
<Description>lager is a C++ library to assist value-oriented design by implementing the unidirectional data-flow architecture. It is heavily inspired by Elm and Redux, and enables composable designs by promoting the use of simple value types and testable application logic via pure functions.</Description>
|
||||
<Archive sha1sum="1aac55d7b77c745bbe71f32f1d8e7114acbd11d0" type="targz">https://github.com/arximboldi/lager/archive/refs/tags/v0.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zug</Dependency>
|
||||
<Dependency>immer</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>catch2</Dependency>
|
||||
<Dependency>ccache</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
<Dependency>libglvnd-devel</Dependency>
|
||||
<Dependency>sdl2-ttf-devel</Dependency>
|
||||
<Dependency>qt5-quickcontrols2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lager</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency>libgcc</Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/lager</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-11-01</Date>
|
||||
<Version>0.1.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>lager</Name>
|
||||
<Summary xml:lang="tr">Tek yönlü veri akışı mimarisini kullanan değer odaklı tasarım için C++ kitaplığı</Summary>
|
||||
<Description xml:lang="tr">lager, tek yönlü veri akışı mimarisini uygulayarak değer odaklı tasarıma yardımcı olan bir C++ kitaplığıdır. Büyük ölçüde Elm ve Redux'tan esinlenmiştir ve saf işlevler aracılığıyla basit değer türlerinin ve test edilebilir uygulama mantığının kullanımını teşvik ederek birleştirilebilir tasarımlara olanak tanır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user