Add astreamfs-git, doomsday, pacaudit

This commit is contained in:
moparisthebest
2020-02-16 15:05:10 -05:00
parent 4883b4b1b5
commit 07fb1cfb7d
3 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# Maintainer: Foxy <gmail: foxyblackhat@gmail.com>
pkgname=astreamfs-git
pkgver=r154.5186593
pkgrel=1
pkgdesc='Fuse filesystem to read http(s) URL'
arch=(i686 x86_64)
url='https://gitlab.com/BylonAkila/astreamfs'
license=(GPL3)
depends=('fuse')
makedepends=('git')
source=(git+https://gitlab.com/BylonAkila/astreamfs.git)
sha1sums=('SKIP')
pkgver() {
cd astreamfs
echo r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd astreamfs
make
}
package() {
cd astreamfs
install -Dm755 astreamfs "${pkgdir}/usr/bin/astreamfs"
install -Dm755 1fichier "${pkgdir}/usr/bin/1fichier"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}