libpano13.

This commit is contained in:
4fury-c3440d8
2023-01-04 09:06:43 +03:00
parent 56f3b1c928
commit 4e5dfbc4f4
2 changed files with 24 additions and 14 deletions
+12 -10
View File
@@ -2,21 +2,23 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
def setup(): j = ''.join([
autotools.configure("--disable-static \ ' -DCMAKE_BUILD_TYPE=Release',
--without-java") ' -DSUPPORT_JAVA_PROGRAMS=OFF',
' -DUSE_SPARSE_LEVMAR=OFF',
' -B_build -L '
])
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") def setup():
cmaketools.configure(j)
def build(): def build():
autotools.make() cmaketools.make("-C _build")
def install(): def install():
autotools.install() cmaketools.install("-C _build")
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "doc/*.txt")
+12 -4
View File
@@ -1,9 +1,9 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>libpano13</Name> <Name>libpano13</Name>
<Homepage>http://sourceforge.net/projects/panotools</Homepage> <Homepage>https://sourceforge.net/projects/panotools/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
@@ -13,8 +13,9 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>Library for manipulating panoramic images</Summary> <Summary>Library for manipulating panoramic images</Summary>
<Description>libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs.</Description> <Description>libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs.</Description>
<Archive sha1sum="85d8d94c96780fa5b6df2c2e4929f8d20557f128" type="targz">mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz</Archive> <Archive sha1sum="00a4ba15f602ad5e63bc3dd6d38a6a42b26f1d25" type="targz">mirrors://sourceforge/panotools/libpano13-2.9.21.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>zlib-devel</Dependency> <Dependency>zlib-devel</Dependency>
<Dependency>tiff-devel</Dependency> <Dependency>tiff-devel</Dependency>
<Dependency>libpng-devel</Dependency> <Dependency>libpng-devel</Dependency>
@@ -32,7 +33,7 @@
<Files> <Files>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/pano13/doc</Path>
<Path fileType="man">/usr/share/man/man1</Path> <Path fileType="man">/usr/share/man/man1</Path>
</Files> </Files>
</Package> </Package>
@@ -50,6 +51,13 @@
</Package> </Package>
<History> <History>
<Update release="6">
<Date>2023-01-02</Date>
<Version>2.9.21</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5"> <Update release="5">
<Date>2020-03-05</Date> <Date>2020-03-05</Date>
<Version>2.9.19</Version> <Version>2.9.19</Version>