PKGBUILDs/community/xdg-user-dirs/PKGBUILD
2009-10-09 21:15:33 -05:00

19 lines
702 B
Bash

# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: <mathieu.clabaut@gmail.com>
pkgname=xdg-user-dirs
pkgver=0.10
pkgrel=2
pkgdesc="tool to help manage 'well known' user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. "
arch=('i686' 'x86_64')
url="http://www.freedesktop.org/wiki/Software/xdg-user-dirs"
license=('GPL')
source=(http://user-dirs.freedesktop.org/releases/$pkgname-$pkgver.tar.gz)
md5sums=('6873f49ea7f568743621ed1e05e52dab')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}