blob: 5370f1f4d20969768e1f172e070a487226d19b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: WitheringAway <124115470+notwithering@users.noreply.github.com>
pkgname=evi
pkgver=1.1.1
pkgrel=1
pkgdesc="Editing layer for secure, encrypted documents"
arch=('x86_64')
url="https://github.com/notwithering/evi"
license=('MIT')
depends=()
makedepends=('go' 'git')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('38fa5dff962d6ee079a8f35677f607a78f39947747cd468192c01078be180af4')
build() {
cd "$srcdir/$pkgname-$pkgver"
go build -o "$pkgname"
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
}
|