blob: 53fca875aecedb9d4d1a12aa04ae7fbccfb15d1e (
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
30
31
32
33
34
35
36
|
# Maintainer: xiretza <xiretza+aur@xiretza.xyz>
_pkgname=quicklogic-fasm-utils
pkgname="python-$_pkgname-git"
pkgver=r13.3d6a375
pkgrel=1
pkgdesc="A set of tools for creating FASM assemblers for the Symbiflow project"
arch=(any)
url="https://github.com/QuickLogic-Corp/$_pkgname"
license=('Apache')
depends=('python' 'python-fasm')
makedepends=('git' 'python-build' 'python-installer' 'python-wheel' 'python-setuptools')
provides=("python-$_pkgname=$pkgver")
conflicts=("python-$_pkgname")
source=("git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$_pkgname"
python -m build --wheel --no-isolation
}
package() {
cd "$_pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|