summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7de36876dbc1e1caf08e2f1328014aff540eac34 (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
32
33
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=cryfa
pkgver=20.04
pkgrel=1
pkgdesc="A secure encryption tool for genomic data"
arch=('i686' 'x86_64')
url="https://github.com/cobilab/cryfa"
license=('GPL')
depends=('gcc-libs')
makedepends=('git' 'cmake')
source=("$pkgname-$pkgver.tar.gz::https://github.com/cobilab/cryfa/archive/v$pkgver.tar.gz")
sha256sums=('8e65537821d4a6f8d64ddbdb7751344fcb7793096809cb3ed1661720c607aaa9')


build() {
  cd "cryfa-$pkgver"

  cmake \
    -B "_build" \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX="/usr" \
    -DCMAKE_INSTALL_LIBDIR="lib" \
    ./
  make -C "_build"
}

package() {
  cd "cryfa-$pkgver"

  install -Dm755 "_build/cryfa" -t "$pkgdir/usr/bin"
  install -Dm755 "_build/keygen" "$pkgdir/usr/bin/cryfa-keygen"
}