summaryrefslogtreecommitdiffstats
path: root/libxdg-basedir
diff options
context:
space:
mode:
authorzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
committerzorz <zorz@krypt.sh>2026-05-05 18:29:35 +0300
commit3ee93968e10126adc7dad5c8872f0170c3421e13 (patch)
treebcac8daa62b6c9a94a48dae87f5d3f6de1985bba /libxdg-basedir
parent936433a5deb6ccc8f8476096f2c2b8dc72c33388 (diff)
downloadzorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.gz
zorz-3ee93968e10126adc7dad5c8872f0170c3421e13.tar.xz
various obsolette
Diffstat (limited to 'libxdg-basedir')
-rw-r--r--libxdg-basedir/.footprint12
-rw-r--r--libxdg-basedir/.signature6
-rw-r--r--libxdg-basedir/MAKEPKG32
3 files changed, 50 insertions, 0 deletions
diff --git a/libxdg-basedir/.footprint b/libxdg-basedir/.footprint
new file mode 100644
index 0000000..70147c2
--- /dev/null
+++ b/libxdg-basedir/.footprint
@@ -0,0 +1,12 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/include/
3-rw-r--r-- root/root usr/include/basedir.h
4-rw-r--r-- root/root usr/include/basedir_fs.h
5drwxr-xr-x root/root usr/lib/
6-rw-r--r-- root/root usr/lib/libxdg-basedir.a
7-rwxr-xr-x root/root usr/lib/libxdg-basedir.la
8-rwxr-xr-x root/root usr/lib/libxdg-basedir.so.1.2.0
9lrwxrwxrwx root/root usr/lib/libxdg-basedir.so -> libxdg-basedir.so.1.2.0
10lrwxrwxrwx root/root usr/lib/libxdg-basedir.so.1 -> libxdg-basedir.so.1.2.0
11drwxr-xr-x root/root usr/lib/pkgconfig/
12-rw-r--r-- root/root usr/lib/pkgconfig/libxdg-basedir.pc
diff --git a/libxdg-basedir/.signature b/libxdg-basedir/.signature
new file mode 100644
index 0000000..636e84f
--- /dev/null
+++ b/libxdg-basedir/.signature
@@ -0,0 +1,6 @@
1untrusted comment: verify with zorz.pub
2RWTZ9IduCSQ/mO4RZpWmkwR87YCsAAi58L/Vh1IMtU9sGpqKh1TfEqi5Q1LIBSfMWusdYeajb9AzOrzBFuahKfaMjfKN4m7Oag0=
3
4SHA256 (MAKEPKG) = 2bcc58be52375dbb6b18424c260a9403d6baedcabc9f17a62ea23e422964b5a9
5SHA256 (.footprint) = 844b9b61dca746d53e4e44e722e2db3c11f710499f913b33fc979768579be27d
6SHA256 (libxdg-basedir-1.2.3.tar.gz) = ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d
diff --git a/libxdg-basedir/MAKEPKG b/libxdg-basedir/MAKEPKG
new file mode 100644
index 0000000..a8ac931
--- /dev/null
+++ b/libxdg-basedir/MAKEPKG
@@ -0,0 +1,32 @@
1#!/bin/mkpkg
2# description: Implementation of the XDG Base Directory specifications
3# url: https://github.com/devnev/libxdg-basedir
4
5name=libxdg-basedir
6version=1.2.3
7release=1
8depends=()
9makedepends=(autoconf automake libtool)
10source=(https://github.com/devnev/$name/archive/$name-$version.tar.gz)
11renames=($name-$version.tar.gz)
12
13sha256sums=(
14 "ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d"
15)
16
17build() {
18 cd $name-$name-$version
19
20 autoreconf -fi
21
22 ./configure --prefix=/usr
23 make
24 make DESTDIR=$PKG install
25}
26
27signify() {
28 untrusted comment: public key
29 RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
30}
31
32# vim: filetype=sh