core/desktop-file-utils/PKGBUILD

25 lines
675 B
Bash
Raw Normal View History

2010-04-07 03:23:26 +08:00
# $Id: PKGBUILD 73005 2010-03-21 18:23:06Z jgc $
2010-03-14 23:48:48 +08:00
# Maintainer: Alexander Fehr <pizzapunk gmail com>
pkgname=desktop-file-utils
pkgver=0.22
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="Command line utilities for working with desktop entries"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://www.freedesktop.org/wiki/Software/desktop-file-utils"
license=('GPL')
depends=('glib2')
2012-01-24 18:16:32 +08:00
source=(http://www.freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-${pkgver}.tar.xz)
md5sums=('c6b9f9aac1ea143091178c23437e6cd0')
2010-03-14 23:48:48 +08:00
build() {
2010-04-07 03:23:26 +08:00
cd "${srcdir}/desktop-file-utils-${pkgver}"
2012-01-24 18:16:32 +08:00
./configure --prefix=/usr
2011-09-01 03:59:48 +08:00
make
}
package() {
cd "${srcdir}/desktop-file-utils-${pkgver}"
2012-01-24 18:16:32 +08:00
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}