# Maintainer: Ashley Anderson # Contributor: Ashley Anderson pkgname=encrypt pkgver=2024.01 pkgrel=1 pkgdesc="A simple, cross platform, file encryption application---suitable for any modern desktop or mobile operating system. The GUI, either GTK or native, has been desigen to be common across systems and intuitive to use, whilst still providing command-line capabilities for power-users." url="https://albinoloverats.net/projects/encrypt" arch=('i686' 'x86_64' 'arm') license=('GPL3') depends=('libgcrypt' 'gtk3' 'curl' 'xz') makedepends=('pkgconfig') install=encrypt.install # you shouldn't need to uncomment this as this PKGBUILD file lives in # the same Git repoository as the source # source=(https://albinoloverats.net/downloads/encrypt.tar.xz) # sha256sum=('') build() { cd ${startdir} make -f Makefile all } package() { cd ${startdir} mkdir -p ${pkgdir}/usr/{bin,share/{encrypt,applications,man/man1,pixmaps,bash-completion/completions,zsh/functions/Completion/Unix}} make -f Makefile install DESTDIR=${pkgdir} }