diff --git a/pisi-index.xml b/pisi-index.xml
index b44dbcef42..ebbb30d420 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -269574,7 +269574,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
ffmpeg için geliştirme dosyaları
Pliki nagłówkowe ffmpeg
- ffmpeg
+ ffmpeg
/usr/include
@@ -269582,6 +269582,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
+
+ 2023-06-06
+ 4.4.4
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2023-04-14
4.4.4
@@ -270372,7 +270379,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
wayland-devel
gstreamer-devel
gst-plugins-base-devel
- gst-plugins-bad
+ gst-plugins-bad
/usr/lib/pkgconfig
@@ -270383,6 +270390,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
+
+ 2023-06-06
+ 1.22.3
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2023-05-22
1.22.3
@@ -350657,6 +350671,82 @@ complete albums that you have purchased from Amazon.
+
+
+ dcmtk
+ https://github.com/DCMTK/dcmtk
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ ASIS
+ library
+ programming.library
+ A collection of libraries and applications implementing large parts the DICOM standard
+ DICOM standardının büyük bölümlerini uygulayan kitaplıklar ve uygulamalar koleksiyonu
+ DCMTK is a collection of libraries and applications implementing large parts the DICOM standard.
+ DICOM standardının büyük bölümlerini uygulayan kitaplıklar ve uygulamalar koleksiyonu.
+ dcmtk
+ https://github.com/DCMTK/dcmtk/archive/refs/tags/DCMTK-3.6.7.tar.gz
+
+ cmake
+ tiff-devel
+ zlib-devel
+ icu4c-devel
+ libpng-devel
+ libxml2-devel
+ openssl-devel
+ libiconv-devel
+
+ programming/library/dcmtk/pspec.xml
+
+
+ dcmtk
+
+ tiff
+ zlib
+ icu4c
+ libpng
+ libgcc
+ libxml2
+ openssl
+ libiconv
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/man
+ /etc
+ /usr/share/doc
+ /usr/share
+
+
+
+ dcmtk-devel
+ Development files for dcmtk
+
+ tiff-devel
+ zlib-devel
+ icu4c-devel
+ openssl-devel
+ dcmtk
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+ 2023-06-06
+ 3.6.7
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
double-conversion
@@ -374112,7 +374202,7 @@ contacts, tasks, and calendar information.
opencv için geliştirme dosyaları
Pliki naglowkowe do opencv
- opencv
+ opencv
/usr/include
@@ -374120,6 +374210,13 @@ contacts, tasks, and calendar information.
+
+ 2023-06-06
+ 4.5.4
+ Rebuild
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-12-09
4.5.4
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index b5510183ed..88b87e84e7 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-0017f81ed04d320fc966d092d3b2be617ccedfec
\ No newline at end of file
+b496ab1e9bf1a9a9edf5a3e85d04dcd35074ac6f
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 9b9978e86d..59d92e41d6 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index d6e7d28e53..cf53734588 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-ccdfbe01b17e8db4039a142b0976f23b5872d88d
\ No newline at end of file
+287411cb0295d7f6965ebb5e9a2c597f24f2f2ac
\ No newline at end of file
diff --git a/programming/library/dcmtk/actions.py b/programming/library/dcmtk/actions.py
new file mode 100644
index 0000000000..eea139f730
--- /dev/null
+++ b/programming/library/dcmtk/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/licenses/gpl.txt
+
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+
+ cmaketools.configure("-DCMAKE_BUILD_TYPE='Release' \
+ -DCMAKE_INSTALL_PREFIX='/usr' \
+ -DCMAKE_INSTALL_LIBDIR='lib' \
+ -DBUILD_SHARED_LIBS=ON \
+ -DBUILD_STATIC_LIBS=OFF", sourceDir="..")
+
+def build():
+ cmaketools.make("-C build")
+
+def install():
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.domove("/usr/etc/dcmtk/", "/etc")
+ pisitools.removeDir("/usr/etc")
+
+ # pisitools.dodoc("Copyright", "README")
+
diff --git a/programming/library/dcmtk/pspec.xml b/programming/library/dcmtk/pspec.xml
new file mode 100644
index 0000000000..e77248d781
--- /dev/null
+++ b/programming/library/dcmtk/pspec.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ dcmtk
+ https://github.com/DCMTK/dcmtk
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ ASIS
+ library
+ dcmtk
+ A collection of libraries and applications implementing large parts the DICOM standard
+ DCMTK is a collection of libraries and applications implementing large parts the DICOM standard.
+ https://github.com/DCMTK/dcmtk/archive/refs/tags/DCMTK-3.6.7.tar.gz
+
+ cmake
+ tiff-devel
+ zlib-devel
+ icu4c-devel
+ libpng-devel
+ libxml2-devel
+ openssl-devel
+ libiconv-devel
+
+
+
+
+
+
+
+ dcmtk
+
+ tiff
+ zlib
+ icu4c
+ libpng
+ libgcc
+ libxml2
+ openssl
+ libiconv
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/man
+ /etc
+ /usr/share/doc
+ /usr/share
+
+
+
+
+ dcmtk-devel
+ Development files for dcmtk
+
+ tiff-devel
+ zlib-devel
+ icu4c-devel
+ openssl-devel
+ dcmtk
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2023-06-06
+ 3.6.7
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/programming/library/dcmtk/translations.xml b/programming/library/dcmtk/translations.xml
new file mode 100644
index 0000000000..713f66abcf
--- /dev/null
+++ b/programming/library/dcmtk/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ dcmtk
+ DICOM standardının büyük bölümlerini uygulayan kitaplıklar ve uygulamalar koleksiyonu
+ DICOM standardının büyük bölümlerini uygulayan kitaplıklar ve uygulamalar koleksiyonu.
+
+