mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 11:21:50 +01:00
31 lines
688 B
Plaintext
31 lines
688 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=sshfs
|
|
pkgver=2.4
|
|
pkgrel=1
|
|
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
|
|
url="http://fuse.sourceforge.net/sshfs.html"
|
|
arch="all"
|
|
license="GPL"
|
|
depends="openssh-client"
|
|
makedepends="pkgconfig fuse-dev glib-dev"
|
|
source="http://downloads.sourceforge.net/sourceforge/fuse/sshfs-fuse-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/sshfs-fuse-$pkgver
|
|
build ()
|
|
{
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="3c7c3647c52ce84d09486f1da3a3ce24 sshfs-fuse-2.4.tar.gz"
|