mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:37:14 +08:00
31 lines
732 B
Bash
31 lines
732 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Martín González <kote[at]chakra-project[dot]org>
|
|
|
|
|
|
pkgname=sshfs
|
|
pkgver=2.4
|
|
pkgrel=3
|
|
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
|
|
arch=('x86_64')
|
|
url="http://fuse.sourceforge.net/sshfs.html"
|
|
license=('GPL')
|
|
depends=('fuse' 'glib2' 'openssh')
|
|
makedepends=('pkgconfig')
|
|
source=(http://downloads.sourceforge.net/sourceforge/fuse/${pkgname}-fuse-${pkgver}.tar.gz)
|
|
sha256sums=('3c93ba8522568093c94ff9c5a3763929380dd229365d905769ff82475d774dd1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-fuse-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-fuse-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|