mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 18:57:13 +08:00
27 lines
660 B
Bash
27 lines
660 B
Bash
# Maintainer: Michael Haesel <michael[dot]haesel[at]gmail[dot]com>
|
|
|
|
pkgname=sshfs
|
|
pkgver=2.4
|
|
pkgrel=2
|
|
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
|
|
}
|