summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 025454cddbc77fdaa7ba4853cb1366a891bb07c0 (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
# Maintainer: Jon Gjengset <jon@thesquareplanet.com>
pkgname=cryptsetup-gui
pkgver=0.6.1
pkgrel=2
epoch=
pkgdesc="Simple GUI for unlocking LUKS encrypted devices"
arch=('any')
url="https://github.com/jonhoo/cryptsetup-gui"
license=('MIT')
groups=()
depends=('glib2' 'cryptsetup')
makedepends=('gcc' 'glib2')
conflicts=()
replaces=()
install=$pkgname.install
changelog=
source=("https://github.com/jonhoo/$pkgname/archive/v${pkgver}.tar.gz")
noextract=()
md5sums=('38044a3b67f488b8f8b9adfea36b50ba')

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

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
  install -Dm644 "README.md" "$pkgdir/usr/share/licenses/cryptsetup-gui/README.md"
}

# vim:set ts=2 sw=2 et: