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