first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/libconfuse/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

View File

@ -0,0 +1,2 @@
# 3.3
First version

16
src/libconfuse/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="libconfuse"
DESC="Small configuration file parser library for C"
VERSION="3.3"
FILES=("https://github.com/libconfuse/libconfuse/releases/download/v$VERSION/confuse-$VERSION.tar.gz")
HASHES=("3a59ded20bc652eaa8e6261ab46f7e483bc13dad79263c15af42ecbb329707b8")
DEPENDS=("glibc")
PACKAGE() {
tar xf confuse-$VERSION.tar.gz
cd confuse-$VERSION
./configure --prefix=/usr --enable-shared
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r confuse-$VERSION
}