blob: 9d00be26cc3164c92d06e4d2adeec5e6f2df933e (
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
57
58
59
60
61
62
63
|
# Maintainer: Aki-nyan <aur@catgirl.link>
pkgname=nextpnr-all-nightly
pkgver=@NPR_VER@
pkgrel=1
epoch=1
pkgdesc="nextpnr portable FPGA place and route tool - all FPGA architectures"
arch=("x86_64")
url="https://github.com/YosysHQ/nextpnr"
license=("custom:ISC")
groups=()
options=("!strip")
depends=(
"yosys-nightly"
"prjtrellis-nightly"
"icestorm-nightly"
"prjoxide-nightly"
"python"
"boost-libs"
"qt5-base"
)
optdepends=()
makedepends=("git" "gcc" "cmake" "ninja" "pkgconf" "gawk" "eigen" "boost")
conflicts=(
"nextpnr-git"
"nextpnr-ice40-nightly"
"nextpnr-ecp5-nightly"
"nextpnr-nexus-nightly"
"nextpnr-generic-nightly"
)
replaces=()
source=(
"nextpnr::git+https://github.com/YosysHQ/nextpnr.git#commit=@NPR_HASH@"
)
sha256sums=(
"SKIP"
)
_PREFIX="/usr"
prepare() {
cd "${srcdir}/nextpnr"
[ ! -d "${srcdir}/nextpnr/build-all" ] && mkdir build-all
}
build() {
cd "${srcdir}/nextpnr"
cd build-all
cmake -G Ninja \
-DARCH=all \
-DBUILD_PYTHON=ON \
-DBUILD_GUI=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=${_PREFIX} \
-DUSE_OPENMP=ON \
..
ninja
}
package() {
cd "${srcdir}/nextpnr"
DESTDIR="${pkgdir}" PREFIX="${_PREFIX}" ninja -C build-all install
install -Dm644 "${srcdir}/nextpnr/COPYING" "${pkgdir}${_PREFIX}/share/licenses/nextpnr/COPYING"
}
|