mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
23 lines
640 B
Bash
23 lines
640 B
Bash
# $Id: PKGBUILD 68118 2010-02-10 20:03:32Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=sshfs
|
|
pkgver=2.2
|
|
pkgrel=3
|
|
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
|
|
arch=('i686' '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)
|
|
md5sums=('26e9206eb5169e87e6f95f54bc005a4f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-fuse-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|