mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:37:16 +08:00
33 lines
620 B
Bash
33 lines
620 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=encfs
|
|
pkgver=1.7.4
|
|
pkgrel=7
|
|
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')
|
|
options=('!libtool')
|
|
source=("http://encfs.googlecode.com/files/${pkgname}-${pkgver}.tgz")
|
|
md5sums=('ac90cc10b2e9fc7e72765de88321d617')
|
|
|
|
build(){
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
}
|