blob: f9e7d89c148e2c20f4aaccf63a27ba27fa8c1050 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Doron Behar <doron.behar@gmail.com>
## GPG key: https://github.com/jedbrown.gpg
_base=ceed
pkgname=(lib${_base} python-${_base})
pkgver=0.12.0
pkgrel=1
pkgdesc="Code for Efficient Extensible Discretizations"
arch=(x86_64)
license=('custom:BSD-2-clause')
url="https://github.com/${_base}/lib${_base}"
makedepends=(gcc-fortran python-cffi python-build python-installer python-setuptools python-wheel git)
source=("lib${_base}::git+${url}#tag=v${pkgver}?signed")
sha512sums=('SKIP')
validpgpkeys=('BA543CE09D732BE604D53F6FCA6D4A3B32D335A0') # Jed Brown <jed@jedbrown.org>
prepare() {
cd lib${_base}
# don't compile CEED twice for python-ceed
sed -i '/always-make/d' setup.py
}
build() {
cd lib${_base}
CFLAGS="-fPIC" make
python -m build --wheel --no-isolation
}
check() {
cd lib${_base}
make test
}
package_libceed() {
depends=(glibc)
provides=('libceed.so')
cd lib${_base}
make DESTDIR="$pkgdir" prefix=/usr install
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}
package_python-ceed() {
depends=(libceed python-cffi python-numpy)
cd lib${_base}
python -m installer --destdir="$pkgdir/" dist/*.whl
local _site="$(python -c 'import site; print(site.getsitepackages()[0])')"
install -d "$pkgdir/usr/share/licenses/$pkgname/"
ln -s \
"$_site/libceed-$pkgver.dist-info/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/"
}
|