summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3236d2344653c372590695eb480b61437c35d78f (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
34
# Maintainer: carstene1ns - https://git.io/ctPKG

pkgname=gtkhash-git
pkgver=v1.4.r64.g3afea16
pkgrel=1
pkgdesc='A cross-platform desktop utility for computing message digests or checksums (development version).'
arch=('i686' 'x86_64')
url='https://github.com/tristanheaven/gtkhash'
license=('GPL2')
makedepends=('git')
depends=('dconf' 'nettle' 'libb2' 'gtk3')
conflicts=('gtkhash')
provides=('gtkhash')
source=(gtkhash::"git+https://github.com/tristanheaven/gtkhash.git")
md5sums=('SKIP')

pkgver() {
  cd gtkhash

  git describe --long --tags | sed 's/-/.r/;s/-/./'
}

build() {
  cd gtkhash

  ./autogen.sh
  ./configure --prefix=/usr --disable-schemas-compile --enable-gtkhash \
              --enable-linux-crypto --enable-nettle
  make
}

package() {
  make -C gtkhash DESTDIR="$pkgdir/" install
}