mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
655 B
Bash
20 lines
655 B
Bash
# $Id: PKGBUILD 6468 2008-07-24 13:00:42Z alexanderf $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=desktop-file-utils
|
|
pkgver=0.15
|
|
pkgrel=1
|
|
pkgdesc="Command line utilities for working with desktop entries"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.freedesktop.org/wiki/Software/desktop-file-utils"
|
|
license=('GPL')
|
|
depends=('glib2')
|
|
source=(http://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-$pkgver.tar.gz)
|
|
md5sums=('2fe8ebe222fc33cd4a959415495b7eed')
|
|
|
|
build() {
|
|
cd "$srcdir/desktop-file-utils-$pkgver"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|