summaryrefslogtreecommitdiff
path: root/libs/libxdg-basedir
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libxdg-basedir')
-rw-r--r--libs/libxdg-basedir/.footprint11
-rw-r--r--libs/libxdg-basedir/.signature6
-rw-r--r--libs/libxdg-basedir/MAKEPKG32
3 files changed, 49 insertions, 0 deletions
diff --git a/libs/libxdg-basedir/.footprint b/libs/libxdg-basedir/.footprint
new file mode 100644
index 0000000..63eab9d
--- /dev/null
+++ b/libs/libxdg-basedir/.footprint
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/basedir.h
+-rw-r--r-- root/root usr/include/basedir_fs.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libxdg-basedir.a
+-rwxr-xr-x root/root usr/lib/libxdg-basedir.so.1.2.0
+lrwxrwxrwx root/root usr/lib/libxdg-basedir.so -> libxdg-basedir.so.1.2.0
+lrwxrwxrwx root/root usr/lib/libxdg-basedir.so.1 -> libxdg-basedir.so.1.2.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libxdg-basedir.pc
diff --git a/libs/libxdg-basedir/.signature b/libs/libxdg-basedir/.signature
new file mode 100644
index 0000000..ef0534b
--- /dev/null
+++ b/libs/libxdg-basedir/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mIh7Vf7OBWNMaByOuBSaqa3x1SQrgHccaj2f422dBJF9N1xnQ4vHgbFJfXZkqqXccnDHFhLm0uIQ8jZQksAlIgM=
+
+SHA256 (MAKEPKG) = 2bcc58be52375dbb6b18424c260a9403d6baedcabc9f17a62ea23e422964b5a9
+SHA256 (.footprint) = de01b89c5b584518fdc8a6199590abc221938b313a821bcdbbb1a5fa8002c4d6
+SHA256 (libxdg-basedir-1.2.3.tar.gz) = ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d
+SHA256 (libxdg-basedir#1.2.3-1.pkg.tar.gz) = 7ab508a701a4e325685d521226e1075d368cc876902abb86168d1c6e7f450915
diff --git a/libs/libxdg-basedir/MAKEPKG b/libs/libxdg-basedir/MAKEPKG
new file mode 100644
index 0000000..a8ac931
--- /dev/null
+++ b/libs/libxdg-basedir/MAKEPKG
@@ -0,0 +1,32 @@
+#!/bin/mkpkg
+# description: Implementation of the XDG Base Directory specifications
+# url: https://github.com/devnev/libxdg-basedir
+
+name=libxdg-basedir
+version=1.2.3
+release=1
+depends=()
+makedepends=(autoconf automake libtool)
+source=(https://github.com/devnev/$name/archive/$name-$version.tar.gz)
+renames=($name-$version.tar.gz)
+
+sha256sums=(
+ "ff30c60161f7043df4dcc6e7cdea8e064e382aa06c73dcc3d1885c7d2c77451d"
+)
+
+build() {
+ cd $name-$name-$version
+
+ autoreconf -fi
+
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh