summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62fbeea3eed2bcc93075dd3fc128fc62096ee97c (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
# Maintainer: Dringsim <dringsim@qq.com>

pkgname=python-iclips
_name=iCLIPS
pkgver=0.2.3
pkgrel=1
pkgdesc="CLIPS Jupyter console"
arch=('any')
url="https://github.com/noxdafox/iclips"
license=('GPL3')
makedepends=('python-setuptools')
depends=('jupyter-console' 'python-clipspy' 'python-regex')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
sha256sums=('793b19da99071ee4b02180d1089168adb45ec23b9fc7076f7a6809201af315ec')

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

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