mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
25 lines
675 B
Bash
25 lines
675 B
Bash
# $Id: PKGBUILD 73005 2010-03-21 18:23:06Z jgc $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=desktop-file-utils
|
|
pkgver=0.22
|
|
pkgrel=1
|
|
pkgdesc="Command line utilities for working with desktop entries"
|
|
arch=('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.xz)
|
|
md5sums=('c6b9f9aac1ea143091178c23437e6cd0')
|
|
|
|
build() {
|
|
cd "${srcdir}/desktop-file-utils-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/desktop-file-utils-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|