diff options
author | lll2yu | 2018-03-29 23:05:14 +0530 |
---|---|---|
committer | lll2yu | 2018-03-29 23:05:14 +0530 |
commit | 22f1b78b2e324a80c52f78082a118824b709c1f4 (patch) | |
tree | 3c878a0beb0fbaf4183727d4740f719f11ab0805 /PKGBUILD | |
download | aur-22f1b78b2e324a80c52f78082a118824b709c1f4.tar.gz |
Initial release
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f91dbb576c74 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: LLL2yu <lll2yu@protonmail.com> + +pkgname=gallery-dl +pkgver=1.3.2 +pkgrel=1 +pkgdesc="Command-line program to download image galleries and collections from pixiv, exhentai, danbooru and more" +arch=('any') +url="https://github.com/mikf/gallery-dl" +license=("GPL2") +depends=('python') +source=(https://github.com/mikf/${pkgname}/archive/v${pkgver}.tar.gz) +sha256sums=('19d2ec29762ab9b8e2d1fa6b2804ffc880578366ab9a1a8f7573961ba3a22be7') + +package() { + cd "$srcdir"/${pkgname}-$pkgver + python setup.py install -O1 --root="$pkgdir" +} |