mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 17:52:10 +01:00
33 lines
944 B
Plaintext
33 lines
944 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=sshfs
|
|
pkgver=2.5
|
|
pkgrel=0
|
|
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="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="17494910db8383a366b1301e5f5148a9 sshfs-fuse-2.5.tar.gz"
|
|
sha256sums="e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e sshfs-fuse-2.5.tar.gz"
|
|
sha512sums="48ae4008d10fe66b843ff1e891627f8262e00d064fec048c8c1189507e757994e81e4fa2deb4d8d56cff0d1818efe4a692494b9c48a01c6c79c626acefa1b53e sshfs-fuse-2.5.tar.gz"
|