mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-07 10:47:15 +08:00
28 lines
718 B
Bash
28 lines
718 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=python-dateutil
|
||
|
pkgver=1.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Provides powerful extensions to the standard datetime module"
|
||
|
arch=('any')
|
||
|
license=('PYTHON')
|
||
|
url="http://labix.org/python-dateutil"
|
||
|
depends=('python')
|
||
|
makedepends=('setuptools')
|
||
|
|
||
|
source=(http://labix.org/download/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('35f3732db3f2cc4afdc68a8533b60a52')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
python2 setup.py install --root=$pkgdir
|
||
|
install -Dm644 LICENSE \
|
||
|
$pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||
|
}
|