azpainter-3.0.5

This commit is contained in:
4fury-c3440d8
2022-04-16 02:15:15 +03:00
parent cc57220be8
commit 74020fffae
2 changed files with 13 additions and 4 deletions
+3 -2
View File
@@ -4,6 +4,7 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get from pisi.actionsapi import get
@@ -12,10 +13,10 @@ def setup():
autotools.rawConfigure("--prefix=/usr") autotools.rawConfigure("--prefix=/usr")
def build(): def build():
autotools.make() shelltools.system("ninja -C build")
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) shelltools.system("DESTDIR=%s ninja -C build install" % get.installDIR())
pisitools.dodoc("ChangeLog", "ReadMe*") pisitools.dodoc("ChangeLog", "ReadMe*")
+10 -2
View File
@@ -15,10 +15,11 @@
<Description> <Description>
Full color painting software for Linux for illustration drawing. This is not suitable for dot editing. Since the color is handled with 16 bit color (15 bit fixed point number) internally, the accuracy of color rises, but the memory is consumed correspondingly. Full color painting software for Linux for illustration drawing. This is not suitable for dot editing. Since the color is handled with 16 bit color (15 bit fixed point number) internally, the accuracy of color rises, but the memory is consumed correspondingly.
</Description> </Description>
<Archive sha1sum="1a3f451fde36104be185111e95aa72f300bb3c56" type="tarbz2"> <Archive sha1sum="5e8aa87cfe54df90ca952fbb3b2a4788b4c05e53" type="tarbz2">
https://gitlab.com/azelpg/azpainter/-/archive/v3.0.4/azpainter-v3.0.4.tar.bz2 https://gitlab.com/azelpg/azpainter/-/archive/v3.0.5/azpainter-v3.0.5.tar.bz2
</Archive> </Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>ninja</Dependency>
<Dependency>tiff-devel</Dependency> <Dependency>tiff-devel</Dependency>
<Dependency>webp-devel</Dependency> <Dependency>webp-devel</Dependency>
<Dependency>libXi-devel</Dependency> <Dependency>libXi-devel</Dependency>
@@ -54,6 +55,13 @@
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2022-04-14</Date>
<Version>3.0.5</Version>
<Comment>Ver. bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2021-12-11</Date> <Date>2021-12-11</Date>
<Version>3.0.4</Version> <Version>3.0.4</Version>