core/desktop-file-utils/PKGBUILD

25 lines
682 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
2012-01-24 18:16:32 +08:00
pkgver=0.19
2010-03-14 23:48:48 +08:00
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')
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=('cbb2427593b7f6d36e52e9d221fce82f')
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
}