summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 96bfcfec5c7d1b193e3bc69d6c4ebe973199b6c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org>

pkgname=python-testing.common.database
pkgver=2.0.3
pkgrel=1
pkgdesc='Utilities for testing.* packages'
arch=(any)
url='https://github.com/tk0miya/testing.common.database'
license=(Apache)
makedepends=(python-setuptools)
depends=(python)
source=("$pkgname-$pkgver.tar.gz"::"https://github.com/tk0miya/testing.common.database/archive/$pkgver.tar.gz")
sha256sums=('f2d4f865e52bacf54cf853b6043cceb06a31ed020b50d3b0e63c7e59c66f00b4')

prepare() {
  cd testing.common.database-$pkgver

  # https://github.com/tk0miya/testing.common.database/issues/21
  sed -i 's|2\.0\.2|2.0.3|' setup.py
}

build() {
  cd testing.common.database-$pkgver
  python setup.py build
}

package() {
  cd testing.common.database-$pkgver
  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}