blob: 0b89838810843ac219bf1f9518ac6dc04d36e7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=sshfs
pkgver=2.3
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="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 --prefix=/usr
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
md5sums="f72f12fda186dbd92382f70d25662ed3 sshfs-fuse-2.3.tar.gz"
|