diff --git a/programming/library/double-conversion/actions.py b/programming/library/double-conversion/actions.py
new file mode 100644
index 0000000000..3a9d9ada59
--- /dev/null
+++ b/programming/library/double-conversion/actions.py
@@ -0,0 +1,33 @@
+#!/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 get
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import shelltools
+
+i = "-DBUILD_SHARED_LIBS=ON \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ "
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ cmaketools.configure(i, sourceDir = '..')
+
+def build():
+ shelltools.cd("build")
+ cmaketools.make()
+
+def install():
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ shelltools.cd("..")
+ pisitools.dodoc("COPYING", "LICENSE", "README.md")
\ No newline at end of file
diff --git a/programming/library/double-conversion/pspec.xml b/programming/library/double-conversion/pspec.xml
new file mode 100644
index 0000000000..bdf649950c
--- /dev/null
+++ b/programming/library/double-conversion/pspec.xml
@@ -0,0 +1,57 @@
+
+
+
+
+ double-conversion
+ https://github.com/google/double-conversion
+
+ fury
+ wascheme@tuta.io
+
+ BSD-3-Clause
+ programming.library
+ library
+ Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.
+ double-conversion provides binary-decimal and decimal-binary routines for IEEE doubles.
+
+ https://github.com/google/double-conversion/archive/v3.1.5.tar.gz
+
+
+ cmake
+
+
+
+
+ double-conversion
+ Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ double-conversion-devel
+ Development files for double-conversion
+
+ double-conversion
+
+
+ /usr/include
+ /usr/lib/cmake
+
+
+
+
+
+ 2020-04-30
+ 3.1.5
+ First build.
+ fury
+ wascheme@tuta.io
+
+
+
\ No newline at end of file
diff --git a/programming/library/double-conversion/translations.xml b/programming/library/double-conversion/translations.xml
new file mode 100644
index 0000000000..3d024bd040
--- /dev/null
+++ b/programming/library/double-conversion/translations.xml
@@ -0,0 +1,14 @@
+
+
+
+ double-conversion
+ IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları.
+ double-conversion, IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları sunar.
+
+
+
+ double-conversion-devel
+ double-conversion için geliştirme dosyaları
+ double-conversion-devel, double-conversion için geliştirme dosyalarını içerir.
+
+
\ No newline at end of file