diff options
author | Alexander Daum | 2025-01-30 17:58:43 +0100 |
---|---|---|
committer | Alexander Daum | 2025-01-30 17:58:43 +0100 |
commit | 8ca4644176c8b43ebb8b8ab0c1b1d19226b76924 (patch) | |
tree | 3c3935230352d7552ef01b7ddf50fdfcbd459d06 | |
download | aur-8ca4644176c8b43ebb8b8ab0c1b1d19226b76924.tar.gz |
Create the package
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | LICENSE | 5 | ||||
-rw-r--r-- | PKGBUILD | 25 |
3 files changed, 42 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..618a81933c55 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = vivado-board-rfsoc4x2 + pkgdesc = Board files for Realdigita RFSoC 4x2 Board for Vivado 2024.2 + pkgver = 2024.2 + pkgrel = 1 + url = https://www.realdigital.org/hardware/rfsoc-4x2 + arch = x86_64 + license = custom + depends = vivado=2024.2 + source = rfsoc4x2.zip::https://www.realdigital.org/downloads/9d2af32116d5420d25da904f6a06bb1f.zip + sha512sums = 2a9c9ec14f468e5d5ba3add908739bcd4cf76837211d39514cf8169429b6854575d0243e6116034585e06fd610c16eec62bc33e857aefeb3c809c59ada630353 + +pkgname = vivado-board-rfsoc4x2 diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000000..0a8fcb612fcf --- /dev/null +++ b/LICENSE @@ -0,0 +1,5 @@ +Copyright (C) YEAR by Alexander Daum <alexander.daum@mailbox.org> + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1acc60cf4b15 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Alexander Daum <alexander.daum@mailbox.org> + +pkgname=vivado-board-rfsoc4x2 +pkgver=2024.2 +pkgrel=1 +pkgdesc="Board files for Realdigita RFSoC 4x2 Board for Vivado 2024.2" +url="https://www.realdigital.org/hardware/rfsoc-4x2" +arch=('x86_64') +license=('custom') + +depends=('vivado=2024.2') + +source=('rfsoc4x2.zip::https://www.realdigital.org/downloads/9d2af32116d5420d25da904f6a06bb1f.zip') + +sha512sums=('2a9c9ec14f468e5d5ba3add908739bcd4cf76837211d39514cf8169429b6854575d0243e6116034585e06fd610c16eec62bc33e857aefeb3c809c59ada630353') + +# Prefix where Vivado is installed +_installprefix=/opt/Xilinx + +package() { + install -dm755 "$pkgdir$_installprefix/Vivado/${pkgver}/data/xhub/boards/XilinxBoardStore/boards/Xilinx/rfsoc4x2" + for boardfile in "$srcdir"/rfsoc4x2/1.0/*; do + install -m644 -t "$pkgdir$_installprefix/Vivado/${pkgver}/data/xhub/boards/XilinxBoardStore/boards/Xilinx/rfsoc4x2/" "$boardfile" + done +} |