summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 345b045389c69c1b45fd6d932bbf5d19df42e0a5 (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
29
30
31
32
33
# Maintainer: Agustín DallʼAlba <aur@dallalba.com.ar>
# Contributor: Foxy <foxyblackhat@gmail.com>

pkgname=astreamfs-git
pkgver=1.8.4
pkgrel=1
epoch=1
pkgdesc='Fuse filesystem to read http(s) URL'
arch=('x86_64')
url='https://gitlab.com/BylonAkila/astreamfs'
license=('GPL3')
depends=('fuse')
makedepends=('git')
provides=('astreamfs')
conflicts=('astreamfs')
source=('git+https://gitlab.com/BylonAkila/astreamfs.git')
sha1sums=('SKIP')

pkgver() {
  cd astreamfs
  git describe --long | sed 's/-/.r/;s/-/./'
}

build() {
  cd astreamfs
  make
}

package() {
  cd astreamfs
  install -Dm755 astreamfs "${pkgdir}/usr/bin/astreamfs"
  install -Dm755 1fichier "${pkgdir}/usr/bin/1fichier"
}