diff options
Diffstat (limited to 'opt/desktop-file-utils/MAKEPKG')
| -rw-r--r-- | opt/desktop-file-utils/MAKEPKG | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/opt/desktop-file-utils/MAKEPKG b/opt/desktop-file-utils/MAKEPKG new file mode 100644 index 0000000..dcd30cc --- /dev/null +++ b/opt/desktop-file-utils/MAKEPKG @@ -0,0 +1,31 @@ +#!/bin/mkpkg +# description: Command-line utilities for working with desktop entries +# url: https://www.freedesktop.org/software/desktop-file-utils/ + +name=desktop-file-utils +version=0.28 +release=1 +depends=(glib) +makedeps=(meson) +source=(https://freedesktop.org/software/$name/releases/$name-$version.tar.xz) + +sha256sums=( + "4401d4e231d842c2de8242395a74a395ca468cd96f5f610d822df33594898a70" +) + +build() { + meson setup $name-$version build \ + --prefix=/usr + + meson compile -C build + DESTDIR=$PKG meson install -C build + + rm -rf $PKG/usr/share/emacs +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
