diff options
author | Johannes Schlatow | 2020-09-09 09:00:45 +0200 |
---|---|---|
committer | Johannes Schlatow | 2020-09-09 09:00:45 +0200 |
commit | 3ad6a2f90389baf68388135fb40a575194342177 (patch) | |
tree | 69296ad12daac5b46482da1a80604092f8d281bc | |
parent | a16ea0cb9ef2e50cdf78991e9c762cc75948fe53 (diff) | |
download | aur-3ad6a2f90389baf68388135fb40a575194342177.tar.gz |
install LICENSE
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,6 @@ pkgbase = python-pycpa-git pkgdesc = Pragmatic Python implementation of Compositional Performance Analysis (aka the SymTA/S approach provided by Symtavision) used for research in worst-case timing analysis. - pkgver = 20200908 + pkgver = 20200909 pkgrel = 1 url = https://bitbucket.org/pycpa/pycpa/ arch = any @@ -13,7 +13,7 @@ pkgbase = python-pycpa-git depends = python-setuptools depends = python-nose depends = python-tornado - provides = pycpa + provides = python-pycpa replaces = python-pycpa-hg source = git+https://bitbucket.org/pycpa/pycpa md5sums = SKIP @@ -2,14 +2,14 @@ _pkgname=python-pycpa pkgname=$_pkgname-git -pkgver=20200908 +pkgver=20200909 pkgrel=1 pkgdesc="Pragmatic Python implementation of Compositional Performance Analysis (aka the SymTA/S approach provided by Symtavision) used for research in worst-case timing analysis." arch=('any') makedepends=('git') replaces=('python-pycpa-hg') depends=('python' 'python-matplotlib' 'python-pygraphviz' 'simpy' 'python-setuptools' 'python-nose' 'python-tornado') -provides=('pycpa') +provides=('python-pycpa') url="https://bitbucket.org/pycpa/pycpa/" license=('MIT') @@ -24,4 +24,6 @@ build() { package() { cd ${srcdir}/pycpa python setup.py install --root="${pkgdir}" + + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE" } |