summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3c86f58b58dbec62da1f9e1edc37a500e2b0e572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer : David Beley <dbeley@protonmail.com>
pkgname=rid-git
pkgver=1.0
pkgrel=1
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
pkgdesc="rid - Reddit Image Downloader - Simple bash script to download images from a subreddit."
arch=('any')
url="https://github.com/dbeley/${pkgname%-git}"
license=('GPL2')
makedepends=('git')
depends=(
        'bash'
        'wget'
        'jq'
        )
source=("git+https://github.com/dbeley/${pkgname%-git}")
md5sums=("SKIP")

package () {
            install -Dm755 "$srcdir/${pkgname%-git}/rid" "$pkgdir/usr/bin/rid"
}