mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
589 B
Bash
19 lines
589 B
Bash
# $Id: PKGBUILD 40902 2009-05-31 23:34:10Z hugo $
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
# Contributor: Mario A. Vazquez <mario_vazq@hotmail.com>
|
|
|
|
pkgname=pyxdg
|
|
pkgver=0.17
|
|
pkgrel=1
|
|
pkgdesc="Python library to access freedesktop.org standards."
|
|
arch=('i686' 'x86_64')
|
|
url="http://freedesktop.org/Software/pyxdg"
|
|
license=("LGPL")
|
|
depends=('python')
|
|
source=(http://www.freedesktop.org/~lanius/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
python setup.py install --prefix=/usr --root=${pkgdir} || return 1
|
|
}
|
|
md5sums=('a086de99cc536095684d87f15594e4db')
|