libsigc++3 new package
This commit is contained in:
+293004
-292783
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
23ac8eaa6a89dac73b61917c357fb6c708786293
|
||||
894db67d889d58e6104bed9b55e8adc5adaf8047
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
ac63ca3dd978a71b2f76afa39a15aba5cff3bdec
|
||||
68bb8a3f31f3363f593500ee1b78bd336d0b3851
|
||||
@@ -0,0 +1,34 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("sh ./autogen.sh")
|
||||
# dont waste time building examples, docs and tests
|
||||
#pisitools.dosed("Makefile.in", " tests examples docs")
|
||||
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.removeDir("/usr/share/devhelp")
|
||||
|
||||
#move html docs to html doc dir
|
||||
#pisitools.dodir("/usr/share/doc/%s/html" % get.srcNAME())
|
||||
#pisitools.domove("/usr/share/doc/libsigc++-3.0/*", "/usr/share/doc/%s/html" % get.srcNAME())
|
||||
#pisitools.removeDir("/usr/share/doc/libsigc++-3.0")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsigc++3</Name>
|
||||
<Homepage>https://libsigcplusplus.github.io/libsigcplusplus/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Typesafe signal framework for C++</Summary>
|
||||
<Description>libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming.</Description>
|
||||
<Archive sha1sum="df587ea463ab57134877ce2f51053ec6dfb36d41" type="tarxz">mirrors://gnome/libsigc++/3.0/libsigc++-3.0.7.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>mm-common</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libsigc++3</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libsigc++3-devel</Name>
|
||||
<Summary>Development files for libsigc++3</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libsigc++3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="doc">/usr/lib/sigc++*/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libsigc++3-docs</Name>
|
||||
<Summary>Development documents for libsigc++</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/libsigc++-3.0/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-07-25</Date>
|
||||
<Version>3.0.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsigc++</Name>
|
||||
<Summary xml:lang="tr">C++ için sinyal altyapısı</Summary>
|
||||
<Description xml:lang="tr">libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır.</Description>
|
||||
<Summary xml:lang="fr">Système de rappels à types sûrs (typesafe callback) pour C++.</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libsigc++-devel</Name>
|
||||
<Summary xml:lang="tr">libsigc++ için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libsigc++-docs</Name>
|
||||
<Summary xml:lang="tr">libsigc++ için geliştirme belgeleri</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user