Skip to content
Snippets Groups Projects
Commit f0be8d52 authored by Filipe Laíns's avatar Filipe Laíns :rainbow:
Browse files

upgpkg: 2020.04-1

parents
No related branches found
Tags 1.4.2-1
No related merge requests found
PKGBUILD 0 → 100644
# Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org>
_pkgname=litepcie
pkgname=python-$_pkgname
pkgver=2020.04
pkgrel=1
pkgdesc='Small footprint and configurable PCIe core'
arch=('any')
url="https://github.com/enjoy-digital/$_pkgname"
license=('BSD')
depends=('python-migen' 'python-litex' 'python-yaml')
makedepends=('python-setuptools')
checkdepends=('python-pytest-runner')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha512sums=('3a442d4e5907a91cbdbf1b876a44a7211340c4bfa25abeadb7e7202efefde3ee2e9a0eaf6791ff3a053fed2b7efc9b41fd9b4d326d94bc6f87c70fdf09d80ec3')
build() {
cd $_pkgname-$pkgver
python setup.py build
}
check() {
cd $_pkgname-$pkgver
python setup.py pytest
}
package() {
cd $_pkgname-$pkgver
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment