First push
This commit is contained in:
commit
dd0da212c3
|
@ -0,0 +1,25 @@
|
||||||
|
pkgname=ip-lookup
|
||||||
|
version=1.0
|
||||||
|
revision=1
|
||||||
|
wrksrc="${pkgname}-${version}"
|
||||||
|
build_style=gnu-makefile
|
||||||
|
short_desc="An IP lookup tool"
|
||||||
|
maintainer="Rich <rich@bandaholics.cash>"
|
||||||
|
license="GPL-3.0-or-later"
|
||||||
|
homepage="https://git.deadzone.lol/Wizzard/ip-lookup"
|
||||||
|
hostmakedepends="git"
|
||||||
|
makedepends="libcurl-devel cJSON-devel"
|
||||||
|
do_fetch() {
|
||||||
|
git clone --depth 1 --branch "main" https://git.deadzone.lol/Wizzard/ip-lookup "${wrksrc}"
|
||||||
|
}
|
||||||
|
do_extract() {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
do_build() {
|
||||||
|
make
|
||||||
|
}
|
||||||
|
do_install() {
|
||||||
|
vbin ip-lookup
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue