summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9fc162e010812717a7f328a39621824e79953706 (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
# Maintainer: Frank Vanderham <twelve dot eighty at gmail dot com>
# Contributor: Sascha Appel <sascha.appel@gmail.com>
pkgname=tuir
pkgver=1.29.0
pkgrel=2
pkgdesc="Browse Reddit from your terminal"
arch=('any')
url="https://gitlab.com/ajak/tuir/"
license=('MIT')
depends=('python-beautifulsoup4' 'python-decorator' 'python-kitchen' 'python-six' 'python-requests')
makedepends=('git' 'python-setuptools')
source=("git+https://gitlab.com/ajak/tuir.git#tag=v$pkgver")
md5sums=('SKIP')

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

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