summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 37dbba422e926367a1ea24fa10e55ac0a435784c (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
# Maintainer: Jason Papakostas <vithos@gmail.com>
pkgname=epaste
pkgver=2.0.0
pkgrel=1
_dirname="$pkgname-v$pkgver"
pkgdesc="encrypts given text and turns encrypted bytes into base64 text which can be easily pasted/retrieved on pastebin websites"
arch=('i686' 'x86_64')
url="https://gitlab.com/zetok/epaste"
license=('GPL3')
groups=()
depends=('gcc-libs' 'libsodium')
makedepends=('git' 'cargo')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=("${url}/-/archive/v${pkgver}/epaste-v${pkgver}.tar.gz")
noextract=()
sha512sums=('b1bc6e31043236e559119bd6e3fe2d5ad110e637e07e8c6a9945959cde40f8263d18286fd7373d91ca66797dda5313503412a99898d50aaea4ab94334d430f59')

build() {
	cd "$srcdir/$_dirname"
	cargo build --release
}

package() {
	cd "$srcdir/$_dirname"
	install -Dm755 "$srcdir/$_dirname/target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
}