protobuf: qt5-webengine's dep

This commit is contained in:
2016-06-14 00:44:48 +03:00
parent efb509467b
commit 70ac1490a7
3 changed files with 106 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.export("PTHREAD_LIBS", "-lpthread")
shelltools.system("./autogen.sh")
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
shelltools.cd("python")
pythonmodules.compile()
shelltools.cd("..")
def install():
autotools.install()
shelltools.cd("python")
pythonmodules.install()
shelltools.cd("..")
pisitools.insinto("/usr/share/vim/vimfiles/syntax/", "editors/proto.vim")
pisitools.insinto("/usr/share/emacs/site-lisp/", "editors/protobuf-mode.el")
pisitools.dodoc("CHANGES.txt", "CONTRIBUTORS.txt", "LICENSE", "README.md")
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>protobuf</Name>
<Homepage>http://code.google.com/p/protobuf</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>Apache-2.0</License>
<IsA>library</IsA>
<Summary>Google's data interchange format</Summary>
<Description>Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.</Description>
<Archive sha1sum="d3bd3cfaa046d252e1b7c3c45106baab06b51f59" type="targz">http://source.pisilinux.org/1.0/protobuf-3.0.0-pre.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>protobuf</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/libproto*</Path>
<Path fileType="library">/usr/lib/python2.7/site-packages</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/vim</Path>
<Path fileType="data">/usr/share/emacs</Path>
</Files>
</Package>
<Package>
<Name>protobuf-devel</Name>
<Summary>Development files for protobuf</Summary>
<RuntimeDependencies>
<Dependency release="current">protobuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/google/protobuf</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-06-12</Date>
<Version>2.6.1</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>protobuf</Name>
<Summary xml:lang="tr">Google'ın veri alış veriş biçimi</Summary>
<Description xml:lang="tr">Protokol Arabellekleri(protobuf) yapılandırılmış veriyi kodlamak için verimli bir biçimdir. Google kendi içindeki bütün RPC protokolleri ve dosya biçimleri için Protokol Arabelleklerini kullanmaktadır.</Description>
</Source>
<Package>
<Name>protobuf-devel</Name>
<Summary xml:lang="tr">protobuf için geliştirme dosyaları</Summary>
</Package>
</PISI>