summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 29d5c2b7779538658b6f2da7018080f7da1a05a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer:  Dimitris Kiziridis <ragouel at outlook dot com>

pkgname=s3find-bin
pkgver=0.6.0
pkgrel=2
pkgdesc='A command line utility to walk an Amazon S3 hierarchy, an analog of find for Amazon S3'
arch=('x86_64')
url="https://github.com/AnderEnder/s3find-rs"
license=('BSD')
provides=('s3find' 's3find-rs')
source=("${pkgname}-${pkgver}.tar.gz::${url}/releases/download/v${pkgver}/s3find-x86_64-linux.tar.gz"
				'LICENSE::https://github.com/AnderEnder/s3find-rs/raw/master/LICENSE')
sha256sums=('f0fb26b1b4ef57bb8d264cd0e2bd5c83ba07f10e0bf358e437718f7e7db16e56'
						'6fbc2783a865b0be78dedbd32ded7076d9aa222cf4bc8970cee2c7738e55caaf')

package() {
  install -Dm755 "${srcdir}"/s3find "${pkgdir}/usr/bin/s3find"
  install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et: