blob: de9094aed3f930713d8e634f5cf79942de276158 (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=nuc970-nuwriter-git
pkgver=r13.1328b10
pkgrel=4
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 NUC970 family processors"
arch=('x86_64'
'aarch64'
'riscv64')
url="https://gitee.com/OpenNuvoton/NUC970_NuWriter_CMD"
license=('GPL-3.0-only')
groups=()
depends=(
glibc
libusb)
makedepends=(git
automake
pkgconf)
checkdepends=()
optdepends=()
provides=('NUC970_NuWriter_CMD')
conflicts=(${pkgname%-git})
replaces=()
backup=()
options=('!strip')
install=
changelog=
source=("${pkgname%-git}::git+${url}.git")
noextract=()
sha256sums=('SKIP')
#validpgpkeys=()
pkgver() {
cd "${srcdir}/${pkgname%-git}"
(
set -o pipefail
git describe --long --tag --abbrev=7 2>/dev/null | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
)
}
build() {
cd "${srcdir}/${pkgname%-git}"
autoreconf -f -i
./configure
# ./configure --prefix=$PWD/install
make
}
package() {
cd "${srcdir}/${pkgname%-git}"
# make install
install -Dm0755 "nuwriter" "${pkgdir}/usr/bin/${pkgname%-git}"
install -Dm0755 "99-nuvoton_isp.rules" "${pkgdir}/usr/lib/udev/rules.d/99-nuvoton_isp.rules"
install -dm0755 "${pkgdir}/usr/share/${pkgname%-git}"
cp -rv nudata "${pkgdir}/usr/share/${pkgname%-git}"
}
|