summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3b1dd7758c9bd6712e0614a6cd5fa9db47da3fa0 (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
# Maintainer: taotieren <admin@taotieren.com>

pkgname=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=()
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 ${pkgname%-git} "${pkgdir}/usr/bin/${pkgname%-git}"
    install -Dm0755 run.ini "${pkgdir}/usr/share/nudata/run.ini"
    cp -rv nudata "${pkgdir}/usr/share/"
}