mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
27 lines
733 B
Bash
27 lines
733 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=pyxdg
|
|
pkgver=0.19
|
|
pkgrel=3
|
|
pkgdesc="Python library to access freedesktop.org standards."
|
|
arch=('any')
|
|
url="http://freedesktop.org/Software/pyxdg"
|
|
license=("LGPL")
|
|
depends=('python')
|
|
source=(http://www.freedesktop.org/~lanius/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('9f33542e846d0fc1e0bfa992a8555b0a')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
python setup.py install --prefix=/usr --root=${pkgdir} || return 1
|
|
}
|
|
|
|
# package() {
|
|
# } |