double-conversion:First release
This commit is contained in:
@@ -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 pisitools
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
cmaketools.make()
|
||||||
|
|
||||||
|
|
||||||
|
def install():
|
||||||
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
pisitools.domove("/usr/lib64/*", "/usr/lib")
|
||||||
|
pisitools.removeDir("/usr/lib64")
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>double-conversion</Name>
|
||||||
|
<Homepage>https://github.com/google/double-conversion</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ali Cengiz Kurt</Name>
|
||||||
|
<Email>alicengizkurt@gmail.com</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>BSD 3-clause</License>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Binary-decimal and decimal-binary conversion routines</Summary>
|
||||||
|
<Description>Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.</Description>
|
||||||
|
<Archive sha1sum="d900d4d946beb493a03cd6c9b180ed2bcbd0f20e" type="targz">https://github.com/google/double-conversion/archive/v3.0.0.tar.gz</Archive>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>double-conversion</Name>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/include/double-conversion/</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2018-02-01</Date>
|
||||||
|
<Version>3.0.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Ali Cengiz Kurt</Name>
|
||||||
|
<Email>alicengizkurt@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user