编写 nuc980-nuwriter 的 PKGBUILD 已经上传到 Arch Linux 的 AUR 仓库 [nuc980-nuwriter-git](https://aur.archlinux.org/packages/nuc980-nuwriter-git)。
可以通过 AUR 工具下载安装,如:yay
yay -S nuc980-nuwriter-git
PKGBUILD 源码
# Maintainer: taotieren <admin@taotieren.com>
pkgname=nuc980-nuwriter-git
pkgver=b7ef934
pkgrel=1
epoch=
pkgdesc="The Nu-writer Command Tool is a linux console application consisting of functions to access storage(eg. DRAM,NAND,SPINOR,SPINAND,SD) in a NUC980 family processors"
arch=('any')
url="https://gitee.com/OpenNuvoton/NUC980_NuWriter_CMD"
license=('GPL3')
groups=()
depends=('libusb')
makedepends=("gcc" "git" "automake" "pkgconfig")
checkdepends=()
optdepends=()
provides=('NUC980_NuWriter_CMD')
conflicts=(${pkgname%-git})
replaces=("nuwriter-git")
backup=()
options=('!strip')
install=
changelog=
source=("${pkgname%-git}::git+${url}.git")
noextract=()
sha256sums=('SKIP')
#validpgpkeys=()
pkgver() {
cd "${srcdir}/${pkgname%-git}/"
# git describe --long --tags | sed 's/V//g;s/\([^-]*-g\)/r\1/;s/-/./g'
git describe --always | sed 's|-|.|g'
}
build() {
cd "${srcdir}/${pkgname%-git}"
autoreconf -f -i
# ./configure --prefix=$PWD/install
make
}
package() {
cd "${srcdir}/${pkgname%-git}"
# make install
install -Dm0755 nuwriter "${pkgdir}/usr/bin/${pkgname%-git}"
install -Dm0755 run.ini "${pkgdir}/usr/share/nudata/run.ini"
cp -rv nudata "${pkgdir}/usr/share/"
}
反馈的问题:
- 内置的 automake 版本是使用 automake-1.15 生成。现 Arch 上版本是 1.16 需要使用 `autoreconf -f -i` 更新配置文件,其他 Linux 版本编译不过,也可以使用 `autoreconf -f -i` 更新 automake 文件
- `./configure --prefix=$PWD/install` 内的文件有缺失,需要更新。
最近编辑记录 taotieren (2022-02-18 18:24:55)
离线
Nuvotons与STM32相比有多好?
离线
Nuvotons与STM32相比有多好?
没啥好处。槽点还有点多。。。。。。
离线