blob: 58a79fa171d8b4a7b5204220a592d00c325ef52b (
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
|
# Maintainer: Patrick Oppenlander <patrick.oppenlander@gmail.com>
# Contributor: Jiuyang Liu <liujiuyang1994@gmail.com>
# Contributor: Emil Renner Berthing <aur@esmil.dk>
pkgname=riscv-openocd-git
pkgver=v20180629.r2363.g9906763b8
pkgrel=1
pkgdesc='Fork of OpenOCD that has RISC-V support'
arch=('x86_64')
url='https://github.com/riscv/riscv-openocd'
license=('GPL')
depends=('libftdi' 'hidapi')
makedepends=('git' 'automake>=1.11' 'autoconf' 'libtool')
source=("$pkgname::git+https://github.com/riscv/riscv-openocd.git#branch=riscv")
sha1sums=('SKIP')
pkgdatadir="/usr/share/riscv-openocd"
pkgver() {
cd "$srcdir/$pkgname"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$srcdir/$pkgname"
git submodule update --init --recursive
}
build() {
cd "$srcdir/$pkgname"
# rename info file so we don't clash with a normal openocd install
sed -i 's/openocd.info/riscv-openocd.info/' doc/openocd.texi
./bootstrap
./configure \
--prefix=/usr \
--program-prefix=riscv- \
--disable-werror \
--with-gnu-ld
make pkgdatadir="$pkgdatadir"
}
package() {
cd "$srcdir/$pkgname"
make pkgdatadir="$pkgdatadir" DESTDIR="$pkgdir" install
}
|