diff --git a/network/misc/libconfig/actions.py b/network/misc/libconfig/actions.py
deleted file mode 100644
index dc3be57927..0000000000
--- a/network/misc/libconfig/actions.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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 get
-
-def setup():
- autotools.autoreconf("-vfi")
- autotools.configure("--disable-static")
-
- # Do not link to unused m library
- pisitools.dosed("libtool", "^(postdeps=.*) -lm (.*)$", r"\1 \2")
-
-def build():
- autotools.make()
-
-def install():
- autotools.install()
-
- pisitools.dodoc("AUTHORS","ChangeLog","COPYING.LIB","README")
diff --git a/network/misc/libconfig/pspec.xml b/network/misc/libconfig/pspec.xml
deleted file mode 100644
index 67f335d976..0000000000
--- a/network/misc/libconfig/pspec.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
- libconfig
- http://www.hyperrealm.com/libconfig/
-
- PisiLinux Community
- admins@pisilinux.org
-
- LGPLv2.1
- library
- C/C++ Configuration File Library
- Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.
- https://github.com/hyperrealm/libconfig/archive/v1.7.2.tar.gz
-
- texinfo
-
-
-
-
- libconfig
-
- /usr/lib
- /usr/share/doc
-
-
-
-
- libconfig-devel
- Development files for libconfig
-
- libconfig
-
-
- /usr/include
- /usr/lib/pkgconfig
- /usr/share/info
-
-
-
-
-
- 2020-11-07
- 1.7.2
- Rebuild
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2020-01-12
- 1.7.2
- Rebuild
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2018-08-03
- 1.5
- Rebuild
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2017-02-17
- 1.5
- Rebuild
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2016-06-09
- 1.5
- Version Bump
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2013-03-04
- 1.4.9
- First release
- Marcin Bojara
- marcin@pisilinux.org
-
-
-
diff --git a/network/misc/libconfig/translations.xml b/network/misc/libconfig/translations.xml
deleted file mode 100644
index 2b5e0a0d65..0000000000
--- a/network/misc/libconfig/translations.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- libconfig
- C/C++ Yapılandırma Dosyası Kitaplığı
- Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz.
-
-
-
- libconfig-devel
- libconfig için geliştirme dosyaları
-
-
diff --git a/programming/library/libconfig/actions.py b/programming/library/libconfig/actions.py
new file mode 100644
index 0000000000..ad8510694a
--- /dev/null
+++ b/programming/library/libconfig/actions.py
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file https://www.gnu.org/licenses/gpl-3.0.txt
+
+from pisi.actionsapi import autotools, pisitools, get
+
+def setup():
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.removeDir("/usr/share/info")
+
+ pisitools.dodoc("AUTHORS", "ChangeLog")
diff --git a/programming/library/libconfig/pspec.xml b/programming/library/libconfig/pspec.xml
new file mode 100644
index 0000000000..de4f1bf0c2
--- /dev/null
+++ b/programming/library/libconfig/pspec.xml
@@ -0,0 +1,100 @@
+
+
+
+
+ libconfig
+ https://hyperrealm.github.io/libconfig/
+
+ Pisilinux Community
+ admins@pisilinux.org
+
+ LGPL-2.1
+ library
+ programming.library
+ C/C++ library for processing configuration files.
+
+ Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.
+
+
+ https://github.com/hyperrealm/libconfig/releases/download/v1.7.3/libconfig-1.7.3.tar.gz
+
+
+ texinfo
+
+
+
+
+ libconfig
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ libconfig-devel
+ Development files for libconfig
+
+ libconfig
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-04-14
+ 1.7.3
+ Version bump.
+ Pisilinux Community
+ admins@pisilinux.org
+
+
+ 2020-11-07
+ 1.7.2
+ Rebuild
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2020-01-12
+ 1.7.2
+ Rebuild
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2018-08-03
+ 1.5
+ Rebuild
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2017-02-17
+ 1.5
+ Rebuild
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2016-06-09
+ 1.5
+ Version Bump
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2013-03-04
+ 1.4.9
+ First release
+ Marcin Bojara
+ marcin@pisilinux.org
+
+
+
diff --git a/programming/library/libconfig/translations.xml b/programming/library/libconfig/translations.xml
new file mode 100644
index 0000000000..9c361cf805
--- /dev/null
+++ b/programming/library/libconfig/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ libconfig
+ C/C++ Yapılandırma Dosyası Kitaplığı
+ Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz.
+
+
+
+ libconfig-devel
+ libconfig için geliştirme dosyaları
+
+