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/libxdg-basedir/.gitignore vendored Normal file
View File

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

View File

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

16
src/libxdg-basedir/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="libxdg-basedir"
DESC="An implementation of the XDG Base Directory specifications"
VERSION="1.2.3"
FILES=("https://github.com/devnev/libxdg-basedir/archive/refs/tags/libxdg-basedir-$VERSION.tar.gz")
HASHES=("ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d")
DEPENDS=("glibc")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$NAME-$VERSION
./autogen.sh && ./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$NAME-$VERSION
}