17 lines
471 B
Plaintext
17 lines
471 B
Plaintext
# Description: Command-line utilities for working with desktop entries
|
|
# URL: https://www.freedesktop.org/software/desktop-file-utils/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: glib pkgconf meson
|
|
|
|
name=desktop-file-utils
|
|
version=0.27
|
|
release=1
|
|
source=(http://freedesktop.org/software/$name/releases/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
meson _build --prefix=/usr
|
|
DESTDIR=$PKG ninja -C _build install
|
|
rm -r $PKG/usr/share/emacs
|
|
}
|