merge fix
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("./autogen.sh")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("leptonica-license.txt")
|
||||
@@ -0,0 +1,24 @@
|
||||
--- lept.pc.in 2016-01-29 21:41:01.000000000 +0200
|
||||
+++ lept 2018-01-05 14:46:02.453185333 +0300
|
||||
@@ -1,12 +1,9 @@
|
||||
-prefix=@prefix@
|
||||
-exec_prefix=@exec_prefix@
|
||||
-libdir=@libdir@
|
||||
-includedir=@includedir@/leptonica
|
||||
-
|
||||
-Name: leptonica
|
||||
-Description: An open source C library for efficient image processing and image analysis operations
|
||||
-Version: @VERSION@
|
||||
-Libs: -L${libdir} -llept
|
||||
-Libs.private: @ZLIB_LIBS@ @LIBPNG_LIBS@ @JPEG_LIBS@ @GIFLIB_LIBS@ @LIBTIFF_LIBS@ @LIBWEBP_LIBS@
|
||||
-Cflags: -I${includedir}
|
||||
-
|
||||
+libdir=@libdir@
|
||||
+includedir=@includedir@/leptonica
|
||||
+
|
||||
+Name: leptonica
|
||||
+Description: An open source C library for efficient image processing and image analysis operations
|
||||
+Version: @VERSION@
|
||||
+Libs: -L${libdir} -llept
|
||||
+Libs.private: @ZLIB_LIBS@ @LIBPNG_LIBS@ @JPEG_LIBS@ @GIFLIB_LIBS@ @LIBTIFF_LIBS@ @LIBWEBP_LIBS@
|
||||
+Cflags: -I${includedir}
|
||||
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>leptonica</Name>
|
||||
<Homepage>http://www.leptonica.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache-2.0</License>
|
||||
<PartOf>multimedia.plugin</PartOf>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Software that is broadly useful for image processing and image analysis applications</Summary>
|
||||
<Description>An open source C library for efficient image processing and image analysis operations.</Description>
|
||||
<Archive sha1sum="8da23bf6c87ca2071ed3c5b0c2c7cade5ee416b0" type="targz">https://github.com/DanBloomberg/leptonica/archive/1.79.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>giflib-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>webp-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch>lept-pkgconfig.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>leptonica</Name>
|
||||
<Summary>Software that is broadly useful for image processing and image analysis applications</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>giflib</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>webp</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>leptonica-devel</Name>
|
||||
<Summary>Development file for leptonica</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">leptonica</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include/leptonica</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2020-01-18</Date>
|
||||
<Version>1.79.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-01-04</Date>
|
||||
<Version>1.74.4</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Ali Cengiz Kurt(alick)</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-18</Date>
|
||||
<Version>1.74.1</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>leptonica</Name>
|
||||
<Summary xml:lang="tr">Leptonica açık kaynaklı görsel işleme ve analiz kitaplığıdır.</Summary>
|
||||
<Description xml:lang="tr">Daha verimli görüntü işleme ve görsel çözümleme operasyonları için açık kaynaklı bir C kitaplığıdır.</Description>
|
||||
<Summary xml:lang="en">Leptonica Library</Summary>
|
||||
<Description xml:lang="en">An open source C library for efficient image processing and image analysis operations.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>leptonica-devel</Name>
|
||||
<Summary xml:lang="tr">leptonica için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">leptonica-devel, leptonica için geliştirme dosyaları içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user