add lensfun, darktable, pugixml, pugixml is a dependency for darktable

This commit is contained in:
groni
2016-11-12 18:23:03 +01:00
parent a84513309b
commit 4d88f4362d
17 changed files with 1956 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 cmaketools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
WorkDir = "pugixml-1.7/scripts"
def setup():
cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_SHARED_LIBS=ON")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README")
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pugixml</Name>
<Homepage>http://pugixml.org</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<Summary>Light-weight, simple and fast XML parser for C++ with XPath support</Summary>
<Description>Light-weight, simple and fast XML parser for C++ with XPath support</Description>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
<Archive sha1sum="b32212efbae781a1830711798aabbc2974c8c552" type="targz">https://github.com/zeux/pugixml/releases/download/v1.7/pugixml-1.7.tar.gz</Archive>
</Source>
<Package>
<Name>pugixml</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>pugixml-devel</Name>
<Summary>Development header for pugixml</Summary>
<RuntimeDependencies>
<Dependency release="current">pugixml</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-11-12</Date>
<Version>1.7</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>