summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ba354ef1ec3af0aec5030a283b4a9c37696fa710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Maintainer: John Jenkins twodopeshaggy@gmail.com

pkgname=python3-kitchen
pkgver=1.2.5
pkgrel=2
pkgdesc="Useful snippets of python code"
url="https://github.com/fedora-infra/kitchen"
depends=('python' )
makedepends=('python' 'python-setuptools')
license=('LGPLv2+')
arch=('any')
source=(https://github.com/fedora-infra/kitchen/archive/v$pkgver.tar.gz)
md5sums=('35490785ed23c91bad1c083c7adbc39e')

build() {
    cd $srcdir/kitchen-$pkgver
    python setup.py build
}

package() {
    cd $srcdir/kitchen-$pkgver
    python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}