summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-07-16 13:43:01 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-07-16 13:43:01 +0000
commitd5d7b466437ac678d791937d8e4699bb4ff82fb8 (patch)
tree179432dd18343651640e582833e9aa5b17f576f3 /testing
parent36b1667c368adbc7cb916e6853fe273ac5212422 (diff)
downloadaports-d5d7b466437ac678d791937d8e4699bb4ff82fb8.tar.bz2
aports-d5d7b466437ac678d791937d8e4699bb4ff82fb8.tar.xz
main/sshfs: moved from testing
fixes #210
Diffstat (limited to 'testing')
-rw-r--r--testing/sshfs/APKBUILD25
1 files changed, 0 insertions, 25 deletions
diff --git a/testing/sshfs/APKBUILD b/testing/sshfs/APKBUILD
deleted file mode 100644
index f91183123..000000000
--- a/testing/sshfs/APKBUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=sshfs
-pkgver=2.2
-pkgrel=0
-pkgdesc="FUSE client based on the SSH File Transfer Protocol"
-url="http://fuse.sourceforge.net/sshfs.html"
-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="26e9206eb5169e87e6f95f54bc005a4f sshfs-fuse-2.2.tar.gz"