mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 17:54:37 +08:00
24 lines
552 B
Bash
24 lines
552 B
Bash
pkgname=sshfs
|
|
pkgver=2.9
|
|
pkgrel=1
|
|
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
|
|
arch=('x86_64')
|
|
url="http://github.com/libfuse/sshfs"
|
|
license=('GPL')
|
|
depends=('fuse' 'glib2' 'openssh')
|
|
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$pkgver/sshfs-$pkgver.tar.gz)
|
|
sha256sums=('46d1e1287ce97255fcb50010355184d8c5585329f73ab1e755217419a8e6e5de')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|