@@ -48,6 +48,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>3.7.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>3.7.5</Version>
|
||||
|
||||
@@ -2,12 +2,11 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-dependency-tracking \
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?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>
|
||||
<Source>
|
||||
<Name>lcms2</Name>
|
||||
<Homepage>http://www.littlecms.com</Homepage>
|
||||
<Homepage>https://www.littlecms.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>A color management library.</Summary>
|
||||
<Description>Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms.</Description>
|
||||
<Archive sha1sum="3d0c0276fcd3930b80c424512ec0b1ed54ec1497" type="targz">https://sourceforge.net/projects/lcms/files/lcms/2.12/lcms2-2.12.tar.gz</Archive>
|
||||
<Archive sha1sum="94350a2638fe58da736e8726048c859b46a69e6f" type="targz">mirrors://sourceforge/project/lcms/lcms/2.14/lcms2-2.14.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
@@ -65,6 +65,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>2.14</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-03-10</Date>
|
||||
<Version>2.12</Version>
|
||||
|
||||
@@ -9,7 +9,7 @@ from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("gnome/libopenraw-gnome-0.3.pc.in", "1", "3")
|
||||
# pisitools.dosed("gnome/libopenraw-gnome-0.3.pc.in", "1", "3")
|
||||
autotools.configure("--enable-gnome --disable-static")
|
||||
|
||||
def build():
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
<Description>
|
||||
libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application.
|
||||
</Description>
|
||||
<Archive sha1sum="18b29c079fab00801316279933c0e782974fe336" type="tarxz">
|
||||
https://libopenraw.freedesktop.org/download/libopenraw-0.3.0.tar.xz
|
||||
<Archive sha1sum="92ef8c5487816994cfcc430ae8fd59c3f862abb1" type="tarxz">
|
||||
https://libopenraw.freedesktop.org/download/libopenraw-0.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>rust</Dependency>
|
||||
@@ -54,6 +54,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>0.3.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2021-12-14</Date>
|
||||
<Version>0.3.0</Version>
|
||||
|
||||
@@ -8,10 +8,13 @@ from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
i = ''.join([
|
||||
' -DBUILD_SHARED_LIBS=ON',
|
||||
' -DWITH_ZLIB=ON -L '
|
||||
])
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DBUILD_SHARED_LIBS=ON \
|
||||
-DWITH_MP4=ON \
|
||||
-DWITH_ASF=ON")
|
||||
cmaketools.configure(i)
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
@@ -19,4 +22,4 @@ def build():
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING*")
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
|
||||
@@ -8,20 +8,19 @@
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<License>MPL-1.1</License>
|
||||
<License>LGPL-2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for reading and editing audio meta data.</Summary>
|
||||
<Description>TagLib is a library for reading and editing the meta data of several popular audio formats.</Description>
|
||||
<Archive sha1sum="c06c44223f64ef61d29372659059d6b9e27c2efd" type="targz">https://taglib.org/releases/taglib-1.12.tar.gz</Archive>
|
||||
<Archive sha1sum="e68319d1ac8fcf7fd68697c6d08427d847b5ebb3" type="targz">https://taglib.org/releases/taglib-1.13.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">CVE-2017-12678.patch</Patch>
|
||||
<Patch level="1">CVE-2018-11439.patch</Patch>
|
||||
<Patch level="1">fix_ogg_corruption.patch</Patch> -->
|
||||
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -51,6 +50,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2022-11-24</Date>
|
||||
<Version>1.13</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-10-23</Date>
|
||||
<Version>1.12</Version>
|
||||
|
||||
@@ -55,6 +55,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-11-23</Date>
|
||||
<Version>11.5.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-09-09</Date>
|
||||
<Version>11.5.0</Version>
|
||||
|
||||
Reference in New Issue
Block a user