summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 75332071215e28c1027d5e8a896e295afbd6b33c (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
27
28
# Maintainer: Lukas Matt <lukas@matt.wf>
pkgname=sshfsmux
pkgver=1.2
pkgrel=3
pkgdesc="Multiplexer client based on the Secure Shell FileSystem"
arch=('x86_64')
url="https://code.google.com/archive/p/sshfsmux/"
license=('GPL')
depends=('fuse2' 'glib2')
source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/sshfsmux/$pkgname-$pkgver.tar.gz")
md5sums=('7aaaa74c2b7d06266ed3c25bc5971b28')
validpgpkeys=('1E9E2C1BCF7639B219FBE159903A00FC06CC137B')

build() {
  cd "$pkgname-$pkgver"
  ./configure --prefix=/usr
  make
}

check() {
  cd "$pkgname-$pkgver"
  make check
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
}