summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 92f5b934b7d040100674f495e5dabd69a28dfe8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: baraclese at gmail dot com
pkgname=quakewatch
pkgver=1.0
pkgrel=1
pkgdesc="Lists the latest earthquakes on the command-line"
url="https://github.com/baraclese/quakewatch"
arch=('any')
license=('GPL3')
depends=(
    python
    python-requests
    python-tabulate
)
source=("https://github.com/baraclese/quakewatch/archive/v${pkgver}.tar.gz")
sha256sums=(ca1f56d9277a063bd0dd8f05e789dce858ffaf51afd31432fda68ac7ac02b2c3)

package() {
    cd "$pkgname-$pkgver"
    install -Dm 755 quakewatch "$pkgdir/usr/bin/quakewatch"
}