19 lines
435 B
Plaintext
19 lines
435 B
Plaintext
# Description: Command-line utilities for working with desktop entries
|
|
# URL: http://www.freedesktop.org/software/desktop-file-utils/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: glib pkg-config
|
|
|
|
name=desktop-file-utils
|
|
version=0.23
|
|
release=1
|
|
source=(http://freedesktop.org/software/$name/releases/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|