forked from albinoloverats/stegfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
27 lines (24 loc) · 1.1 KB
/
PKGBUILD
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
# Maintainer: Ashley Anderson <[email protected]>
# Contributor: Ashley Anderson <[email protected]>
pkgname=stegfs
pkgver=2015.08.1
pkgrel=1
pkgdesc="stegfs is a FUSE based file system which provides absolute security. Using encryption to secure files, and the art of steganography to hide them, stegfs aims to ensure that the existence of such files isn't guaranteed. Implemented as a FUSE based file system and using the GNU crypto library, libgcrypt, to provide the cryptographic hash and symmetric block cipher functions, stegfs is at the cutting edge of secure file system technology."
url="https://albinoloverats.net/projects/stegfs"
arch=('i686' 'x86_64' 'arm')
license=('GPL3')
depends=('fuse' 'libgcrypt')
makedepends=('pkgconfig')
# 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/stegfs.tar.xz)
# sha256sum=('')
build() {
cd ${startdir}
make -f Makefile
}
package() {
cd ${startdir}
mkdir -p ${pkgdir}/usr/{bin,share/man/man1}
make -f Makefile install PREFIX=${pkgdir}
}