mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 08:24:36 +08:00
27 lines
552 B
Bash
27 lines
552 B
Bash
pkgname=encfs
|
|
pkgver=1.8.1
|
|
pkgrel=1
|
|
pkgdesc='Encrypted filesystem in user-space'
|
|
arch=('x86_64')
|
|
url='http://www.arg0.net/encfs'
|
|
license=('GPL')
|
|
depends=('rlog' 'openssl' 'fuse' 'boost-libs')
|
|
makedepends=('boost' 'automake')
|
|
options=('!libtool')
|
|
source=("https://github.com/vgough/encfs/releases/download/v${pkgver}/encfs-${pkgver}.tar.gz")
|
|
md5sums=('f8365378ab7c0d493e04f4e98ae7eb4e')
|
|
|
|
build(){
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
autoreconf -if
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|