fribidi-1.0.12

This commit is contained in:
4fury-c3440d8
2023-01-05 16:55:55 +03:00
parent 5291939084
commit 0e0a22c8d4
2 changed files with 27 additions and 22 deletions
+10 -14
View File
@@ -2,33 +2,29 @@
# -*- 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 shelltools, autotools, pisitools, get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-fiv") autotools.autoreconf("-fiv")
options = "--disable-static \ options = "--disable-static --with-pic"
--with-pic"
if get.buildTYPE()=="emul32": if get.buildTYPE()=="emul32":
shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig")
options += "--libdir=/usr/lib32" options += "--libdir=/usr/lib32"
autotools.configure(options) autotools.configure(options)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build(): def build():
autotools.make() autotools.make()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# unneeded empty manpages.
if get.buildTYPE()=="emul32": pisitools.removeDir("/usr/share/man")
pisitools.dodoc("AUTHORS", "NEWS", "README", "ChangeLog", "THANKS", "TODO") if get.buildTYPE()=="emul32":
pisitools.dodoc("AUTHORS", "NEWS", "THANKS")
+17 -8
View File
@@ -1,19 +1,21 @@
<?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>fribidi</Name> <Name>fribidi</Name>
<Homepage>http://fribidi.sourceforge.net/</Homepage> <Homepage>https://github.com/fribidi/fribidi</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>app:console</IsA> <IsA>app:console</IsA>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>A free implementation of the unicode bidirectional algorithm</Summary> <Summary>A free implementation of the unicode bidirectional algorithm.</Summary>
<Description>GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm.</Description> <Description>GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm.</Description>
<Archive sha1sum="0489f1f9b6e19fd3060ee4da36e7e5f7b8ad21c9" type="tarbz2">https://github.com/fribidi/fribidi/releases/download/v1.0.8/fribidi-1.0.8.tar.bz2</Archive> <Archive sha1sum="c042d9a6e42d9871ea485bb734df049cc57a7185" type="tarxz">
https://github.com/fribidi/fribidi/releases/download/v1.0.12/fribidi-1.0.12.tar.xz
</Archive>
</Source> </Source>
<Package> <Package>
@@ -21,7 +23,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="man">/usr/share/man</Path> <!-- <Path fileType="man">/usr/share/man</Path> -->
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
</Files> </Files>
</Package> </Package>
@@ -34,11 +36,11 @@
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="man">/usr/share/man/man3</Path> <!-- <Path fileType="man">/usr/share/man/man3</Path> -->
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>fribidi-32bit</Name> <Name>fribidi-32bit</Name>
<PartOf>emul32</PartOf> <PartOf>emul32</PartOf>
@@ -55,6 +57,13 @@
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2023-01-05</Date>
<Version>1.0.12</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2020-01-18</Date> <Date>2020-01-18</Date>
<Version>1.0.8</Version> <Version>1.0.8</Version>