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