core/desktop-file-utils/PKGBUILD

22 lines
574 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
pkgname=desktop-file-utils
2017-10-23 06:10:01 +08:00
pkgver=0.23
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)
2017-10-23 06:10:01 +08:00
md5sums=('599133d51cc9a41bfec186414906b6f1')
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
}