first commit
This commit is contained in:
3
src/libconfuse/.gitignore
vendored
Normal file
3
src/libconfuse/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/libconfuse/changes.md
Normal file
2
src/libconfuse/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.3
|
||||
First version
|
16
src/libconfuse/pkg.sh
Normal file
16
src/libconfuse/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user