ip-lookup/PKGBUILD

20 lines
341 B
Bash
Raw Normal View History

2024-02-26 01:20:37 -05:00
pkgname=ip-lookup
2024-03-05 15:59:12 -05:00
pkgver=1.5
2024-02-26 01:20:37 -05:00
pkgrel=1
pkgdesc="A simple IP lookup tool that shows city, ASN, and other information. Deadzone.lol Motherfucker."
arch=('x86_64')
url="https://deadzone.lol"
license=('GPL')
depends=('curl' 'cjson')
build() {
2024-02-26 02:00:38 -05:00
cd ..
make
2024-02-26 01:20:37 -05:00
}
package() {
2024-02-26 02:00:38 -05:00
cd ..
install -Dm755 "./bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
2024-02-26 01:20:37 -05:00
}
2024-02-26 02:00:38 -05:00