summaryrefslogtreecommitdiff
path: root/libs/libxdg-basedir/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libxdg-basedir/MAKEPKG')
-rw-r--r--libs/libxdg-basedir/MAKEPKG32
1 files changed, 32 insertions, 0 deletions
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