summaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: 6e1cb7d7c22237a67e025007c34fc2f7bae4f320 (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
# Maintainer: Seppia <seppia@seppio.fish>
pkgname=otbluh
pkglongname=onetimebluh
pkgver=0.1
pkgrel=1
pkgdesc="Simple one time pad implementation with key generating support called onetimebluh due to its features"
arch=('i686' 'x86_64' 'aarch64')
url="https://git.eigenlab.org/seppia/onetimebluh"
license=('GPLv3')
groups=()
depends=('openssl')
provides=("${pkgname}")
conflicts=("${pkgname}","${pkgname%-git}")
replaces=()
backup=()
options=()
install=
source=("https://git.seppia.net/onetimebluh.git/snapshot/${pkglongname}-${pkgver}.tar.gz")
sha256sums=('efde76c8832d8f9bdd514cd4906424f86cf40f9d183e2b047c64a05a3ee88728')

build() {
	cd "$srcdir/${pkglongname}-${pkgver}"
	make all
}

package() {
	cd "$srcdir/${pkglongname}-${pkgver}"
	make DESTDIR="$pkgdir/" install
}