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