This commit is contained in:
4fury-c3440d8
2022-11-14 10:19:44 +03:00
parent c8ec72cae0
commit de13d09032
2 changed files with 20 additions and 16 deletions
+4 -8
View File
@@ -2,19 +2,15 @@
# -*- 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 autotools, pisitools, get
from pisi.actionsapi import pisitools
def setup(): def setup():
autotools.configure("--enable-nls \ autotools.configure("--disable-docs --disable-static")
--disable-static")
def build(): def build():
autotools.make() autotools.make()
def install(): def install():
autotools.install() autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("ChangeLog", "README")
+16 -8
View File
@@ -1,23 +1,25 @@
<?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>libexif</Name> <Name>libexif</Name>
<Homepage>http://libexif.sourceforge.net/</Homepage> <Homepage>https://libexif.github.io/</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<License>LGPLv2.1</License> <License>LGPL-2.1</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Library for parsing, editing, and saving EXIF data</Summary> <Summary>Library for parsing, editing, and saving EXIF data</Summary>
<Description>Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.</Description> <Description>Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.</Description>
<Archive sha1sum="a52219b12dbc8d33fc096468591170fda71316c0" type="tarbz2">mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2</Archive> <Archive sha1sum="8b42080dc6d62ee9a89658e878b622f2eaefe986" type="tarbz2">
https://github.com/libexif/libexif/releases/download/v0.6.24/libexif-0.6.24.tar.bz2
</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>doxygen</Dependency> <!-- <Dependency>doxygen</Dependency> -->
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<Patch>libexif-0.6.13-pkgconfig.patch</Patch> <!-- <Patch></Patch> -->
</Patches> </Patches>
</Source> </Source>
@@ -39,12 +41,18 @@
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/libexif/libexif-api.html</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="5"> <Update release="6">
<Date>2022-11-14</Date>
<Version>0.6.24</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5">
<Date>2020-01-19</Date> <Date>2020-01-19</Date>
<Version>0.6.21</Version> <Version>0.6.21</Version>
<Comment>Rebuild</Comment> <Comment>Rebuild</Comment>