blob: ab7fd549cbbf7ed308672858d2b6e99e289fb0ef (
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
|
# Maintainer: Timofey Korolik <https://github.com/DECE2183>
pkgbase=hexowl
pkgname='hexowl'
pkgver=1.5.1
pkgrel=1
pkgdesc="hexowl is a Lightweight and flexible programmer's calculator with user variables and functions support written in Go."
arch=('i686' 'x86_64')
url="https://github.com/DECE2183/hexowl"
license=('GPL3')
makedepends=('go')
provides=('hexowl')
conflicts=('hexowl')
source=("hexowl-${pkgver}.tar.gz::https://github.com/DECE2183/hexowl/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('c80e419d8936b610d414f374f909d3dc5dc6b53a95ebf3589ecae6618814fed8')
build() {
cd "${srcdir}/${pkgbase}-${pkgver}"
echo "Starting build..."
go build -trimpath
}
package() {
cd "${srcdir}/${pkgbase}-${pkgver}"
install -Dm755 "${pkgbase}" "${pkgdir}/usr/bin/${pkgbase}"
}
|