blob: d0c03eff5e4966e7acafd7da6e7209f51ae89594 (
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
|
# Maintainer: Kyle Manna kyle[at]kylemanna[d0t]com
pkgname=mynewt-newt
pkgver=1.10.0
_pkgver=${pkgver//./_}
pkgrel=1
epoch=
pkgdesc="A tool to use with the gx package manager for packages written in go."
arch=('x86_64')
url="https://github.com/apache/mynewt-newt"
license=('Apache')
depends=()
makedepends=('go')
source=("https://github.com/apache/mynewt-newt/archive/mynewt_${_pkgver}_tag.tar.gz")
sha512sums=('6109b0421d8e02d5b83082f8085ccf0904ad7f1997e1d9932fad015d3cb40ab6804571a2466d2a42f3f7970e114ac25b2a9084c3c15e16c46eb01f359ecc0151')
build() {
cd "${srcdir}/mynewt-newt-mynewt_${_pkgver}_tag"
msg2 'Building binary...'
./build.sh
}
package() {
cd "${srcdir}/mynewt-newt-mynewt_${_pkgver}_tag"
msg2 'Packaging binary...'
install -Dm 755 newt/newt "${pkgdir}/usr/bin/newt"
}
|