summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ec2afc1375dfd87ce0de1344f101725c306aa65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Maintainer: Daniel M. Capella <polycitizen@gmail.com>

pkgname=instalooter
pkgver=2.2.0
pkgrel=1
pkgdesc='Another API-less Instagram pictures and videos downloader'
arch=('any')
url=https://github.com/althonos/InstaLooter
license=('GPL3')
depends=('python-coloredlogs' 'python-dateutil' 'python-docopt'
         'python-fake-useragent' 'python-fs' 'python-requests' 'python-six'
         'python-tenacity' 'python-tqdm' 'python-verboselogs')
makedepends=('python-setuptools')
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz")
sha512sums=('2d15902c57d43cc754b66e9a42d432baf3d0f9f861a368fc8c865c5e93ad61b4c01a2625bcf923987aee1cb5b2853c759d8c0ea86be958a0b90712811e96c982')

build() {
  cd $pkgname-$pkgver
  python setup.py build
}

package() {
  cd $pkgname-$pkgver
  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}

# vim:set ts=2 sw=2 et: