summaryrefslogtreecommitdiff
path: root/PKGBUILD
blob: c1443c533a8019bbd337d81c9e4dda8faa7e3c6e (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
# Maintainer: jc_gargma <jc_gargma@iserlohn-fortress.net>
# Maintainer (AUR): Alad Wenter <alad@archlinux.org>
# Contributor (AUR): John Jenkins twodopeshaggy@gmail.com
# Contributor (AUR): Sean Anderson seanga2@gmail.com

# # I maintain this because:
# I use it and it is not in an official repo

pkgname=python-kitchen
pkgver=1.2.6
pkgrel=5
pkgdesc="Useful snippets of python code"
url="https://github.com/fedora-infra/kitchen"
depends=('python')
makedepends=('python-setuptools')
license=('LGPL')
arch=('any')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0')

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

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