summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fccba3349ab3be142f897e6687867b3ef9649664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Grant Handy <grantshandy AT gmail DOT com>

_pkgname='thes'
pkgname=${_pkgname}-bin
pkgver=0.1.3
pkgrel=1
pkgdesc="A CLI tool that finds the location of IP addresses."
arch=('x86_64')
url="https://github.com/DefunctLizard/thes"
license=('GPL-3.0')
depends=('glibc')
makedepends=('rust' 'git')
source=("https://github.com/DefunctLizard/thes/releases/download/0.1.3/thes-linux.x86_64")
md5sums=('SKIP')

package() {
  cd "$srcdir/"

  # Binary
  install -Dm755 thes-linux.x86_64 $pkgdir/usr/bin/$_pkgname
}