+315138
-314317
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
1b450221f3f507b2a79173208cfd88886cfd2077
|
||||
113ecc27ce51ac505ccfb820007c301d3d5caf07
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
1cf3ccb6cbaa9f5af6990bf3909a981c50b3d40f
|
||||
6ada1721d4b00b7e765199fccaf0fc4108764d9f
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env 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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-Bbuild \
|
||||
-DABSL_ENABLE_INSTALL=ON \
|
||||
-DCMAKE_BUILD_TYPE:STRING=None \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_CXX_STANDARD:STRING=17 \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DABSL_PROPAGATE_CXX_STD=ON")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "LICENSE", "README*")
|
||||
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>abseil-cpp</Name>
|
||||
<Homepage>https://abseil.io/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Collection of C++ library code designed to augment the C++ standard library</Summary>
|
||||
<Description>Collection of C++ library code designed to augment the C++ standard library</Description>
|
||||
<Archive sha1sum="8ec1d0e9f51ecbc9bf67b3f07007d2b04b0ca198" type="targz">https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
-->
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>abseil-cpp.patch</Patch>
|
||||
<Patch level="1">abseil-cpp.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>abseil-cpp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>abseil-cpp-devel</Name>
|
||||
<Summary>Development files for abseil-cpp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">abseil-cpp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-12-10</Date>
|
||||
<Version>20211102.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>abseil-cpp</Name>
|
||||
<Summary xml:lang="tr">Collection of C++ library code designed to augment the C++ standard library</Summary>
|
||||
<Description xml:lang="tr">Collection of C++ library code designed to augment the C++ standard library</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user