@@ -0,0 +1,28 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pythonmodules
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
from pisi.actionsapi import autotools
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import libtools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
#shelltools.system("./bootstrap --force")
|
||||||
|
|
||||||
|
autotools.configure()
|
||||||
|
|
||||||
|
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
autotools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
pisitools.dodoc("AUTHORS", "LICENSE", "COPYING.gplv3")
|
||||||
|
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>fontforge</Name>
|
||||||
|
<Homepage>http://fontforge.sourceforge.net/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>BSD</License>
|
||||||
|
<Icon>fontforge</Icon>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<Summary>Font editor and converter</Summary>
|
||||||
|
<Description>FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats.</Description>
|
||||||
|
<Archive sha1sum="2dd442baee9cd16efb5928bf51cc3d6b9c73d9af" type="targz">https://github.com/fontforge/fontforge/releases/download/20150824/fontforge-20150824.tar.gz</Archive>
|
||||||
|
<Archive sha1sum="efbc7c9d3e95159f5600dc71f9cccb370e46bb94" target="fontforge-20150824.tar.gz" type="targz">http://fontforge.org/cidmaps.tgz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>python-devel</Dependency>
|
||||||
|
<Dependency>zlib-devel</Dependency>
|
||||||
|
<Dependency>glib2-devel</Dependency>
|
||||||
|
<Dependency>freetype-devel</Dependency>
|
||||||
|
<Dependency>libxml2-devel</Dependency>
|
||||||
|
<Dependency>tiff-devel</Dependency>
|
||||||
|
<Dependency>libpng-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>fontforge</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>libpng</Dependency>
|
||||||
|
<Dependency>tiff</Dependency>
|
||||||
|
<Dependency>python</Dependency>
|
||||||
|
<Dependency>zlib</Dependency>
|
||||||
|
<Dependency>glib2</Dependency>
|
||||||
|
<Dependency>freetype</Dependency>
|
||||||
|
<Dependency>libxml2</Dependency>
|
||||||
|
<Dependency>libtool-ltdl</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="man">/usr/share/man</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share/mime</Path>
|
||||||
|
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||||
|
<Path fileType="data">/usr/share/fontforge</Path>
|
||||||
|
<Path fileType="data">/usr/share/applications</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>fontforge-devel</Name>
|
||||||
|
<Summary>Development files for fontforge</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">fontforge</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-25</Date>
|
||||||
|
<Version>20150824</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Vedat Demir</Name>
|
||||||
|
<Email>vedat@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>fontforge</Name>
|
||||||
|
<Summary xml:lang="tr">Postscript yazı tipi düzenleyici ve çevirici</Summary>
|
||||||
|
<Description xml:lang="tr">FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir.</Description>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>fontforge-devel</Name>
|
||||||
|
<Summary xml:lang="tr">fontforge için geliştirme dosyaları</Summary>
|
||||||
|
</Package>
|
||||||
|
</PISI>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -2,12 +2,20 @@
|
|||||||
# -*- 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/copyleft/gpl.txt
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
from pisi.actionsapi import pisitools
|
from pisi.actionsapi import pisitools
|
||||||
from pisi.actionsapi import get
|
from pisi.actionsapi import cmaketools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
def install():
|
def install():
|
||||||
pisitools.insinto("/usr/share/fonts/oxygen", "*/*.ttf")
|
kde5.install()
|
||||||
|
|
||||||
pisitools.dodoc("COPYING-OFL", "README")
|
|
||||||
|
pisitools.dodoc("COPYING-OFL", "README.md")
|
||||||
|
|||||||
@@ -12,7 +12,12 @@
|
|||||||
<IsA>data:font</IsA>
|
<IsA>data:font</IsA>
|
||||||
<Summary>Oxygen font family</Summary>
|
<Summary>Oxygen font family</Summary>
|
||||||
<Description>Oxygen font family is a desktop / GUI font family for integrated use with KDE.</Description>
|
<Description>Oxygen font family is a desktop / GUI font family for integrated use with KDE.</Description>
|
||||||
<Archive sha1sum="8369caceb8758e1d46b4760628fb48efb83ba093" type="tarxz">http://source.pisilinux.org/1.0/oxygen-fonts-0.4.tar.xz</Archive>
|
<Archive sha1sum="6336d12705332d95d70fa03e710dc0a87e5be69a" type="tarxz">http://download.kde.org/stable/plasma/5.4.0/oxygen-fonts-5.4.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
<Dependency>fontconfig-devel</Dependency>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
<Package>
|
<Package>
|
||||||
@@ -23,10 +28,18 @@
|
|||||||
<Files>
|
<Files>
|
||||||
<Path fileType="data">/usr/share/fonts</Path>
|
<Path fileType="data">/usr/share/fonts</Path>
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
|
<Update release="2">
|
||||||
|
<Date>2014-08-27</Date>
|
||||||
|
<Version>5.4.0</Version>
|
||||||
|
<Comment>Version bump</Comment>
|
||||||
|
<Name>Vedat Demir</Name>
|
||||||
|
<Email>vedat@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
<Update release="1">
|
<Update release="1">
|
||||||
<Date>2014-03-02</Date>
|
<Date>2014-03-02</Date>
|
||||||
<Version>0.4</Version>
|
<Version>0.4</Version>
|
||||||
|
|||||||
Reference in New Issue
Block a user