Skip to content

Commit

Permalink
Add 's3backer-git/' from commit '9490077ecf3bc1fc930883ab29f659594704…
Browse files Browse the repository at this point in the history
…c4c5'

git-subtree-dir: s3backer-git
git-subtree-mainline: 51d4e72
git-subtree-split: 9490077
  • Loading branch information
DuckSoft committed Apr 10, 2021
2 parents 51d4e72 + 9490077 commit 77df63e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
19 changes: 19 additions & 0 deletions s3backer-git/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
pkgbase = s3backer-git
pkgdesc = FUSE-based single file backing store via Amazon S3
pkgver = r509.2ecf161
pkgrel = 1
url = https://github.com/archiecobbs/s3backer
arch = x86_64
license = GPL
depends = fuse2
depends = curl
depends = expat
depends = openssl
depends = zlib
provides = s3backer
conflicts = s3backer
source = s3backer-git::git+https://github.com/archiecobbs/s3backer
sha512sums = SKIP

pkgname = s3backer-git

31 changes: 31 additions & 0 deletions s3backer-git/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Maintainer: DuckSoft <[email protected]>

pkgname='s3backer-git'
pkgver=r509.2ecf161
pkgrel=1
pkgdesc="FUSE-based single file backing store via Amazon S3"
arch=('x86_64')
provides=('s3backer')
conflicts=('s3backer')
url="https://github.com/archiecobbs/s3backer"
license=('GPL')
depends=('fuse2' 'curl' 'expat' 'openssl' 'zlib')
source=("$pkgname::git+https://github.com/archiecobbs/s3backer")
sha512sums=('SKIP')

pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
cd "${srcdir}/${pkgname}"
./autogen.sh
./configure --prefix="${pkgdir}/usr"
make
}

package() {
cd "${srcdir}/${pkgname}"
make install
}

0 comments on commit 77df63e

Please sign in to comment.