mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
v3.0
This commit is contained in:
parent
5bfb74eb4a
commit
7038f418dd
2 changed files with 19 additions and 10 deletions
13
.SRCINFO
13
.SRCINFO
|
|
@ -1,6 +1,6 @@
|
|||
pkgbase = s3ql
|
||||
pkgdesc = A full-featured file system for online data storage.
|
||||
pkgver = 2.33
|
||||
pkgver = 3.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/s3ql/s3ql/
|
||||
install = s3ql.install
|
||||
|
|
@ -9,14 +9,15 @@ pkgbase = s3ql
|
|||
license = GPL3
|
||||
makedepends = gcc
|
||||
depends = python
|
||||
depends = python-apsw
|
||||
depends = python-crypto
|
||||
depends = python-cryptography
|
||||
depends = python-defusedxml
|
||||
depends = python-dugong>=3.4
|
||||
depends = python-apsw
|
||||
depends = python-llfuse
|
||||
depends = python-dugong
|
||||
depends = python-requests
|
||||
source = https://github.com/s3ql/s3ql/releases/download/release-2.33/s3ql-2.33.tar.bz2
|
||||
md5sums = 729c917d89c2fc220d0daef999a83911
|
||||
depends = python-google-auth
|
||||
source = https://github.com/s3ql/s3ql/releases/download/release-3.0/s3ql-3.0.tar.bz2
|
||||
md5sums = da7e4cc1ba0d22d277f240bc695422ea
|
||||
|
||||
pkgname = s3ql
|
||||
|
||||
|
|
|
|||
16
PKGBUILD
16
PKGBUILD
|
|
@ -3,18 +3,26 @@
|
|||
# Contributor: Brendan MacDonell <macdonellba at gmail dot com>
|
||||
|
||||
pkgname=s3ql
|
||||
pkgver=2.33
|
||||
pkgver=3.0
|
||||
pkgrel=1
|
||||
pkgdesc="A full-featured file system for online data storage."
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/s3ql/s3ql/"
|
||||
license=('GPL3')
|
||||
depends=('python' 'python-apsw' 'python-crypto' 'python-defusedxml' 'python-dugong>=3.4'
|
||||
'python-llfuse' 'python-requests')
|
||||
depends=(
|
||||
'python'
|
||||
'python-cryptography'
|
||||
'python-defusedxml'
|
||||
'python-apsw'
|
||||
'python-llfuse'
|
||||
'python-dugong'
|
||||
'python-requests'
|
||||
'python-google-auth'
|
||||
)
|
||||
makedepends=('gcc')
|
||||
install="s3ql.install"
|
||||
source=(https://github.com/s3ql/s3ql/releases/download/release-$pkgver/s3ql-$pkgver.tar.bz2)
|
||||
md5sums=('729c917d89c2fc220d0daef999a83911')
|
||||
md5sums=('da7e4cc1ba0d22d277f240bc695422ea')
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue