diff options
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 20 |
3 files changed, 24 insertions, 9 deletions
@@ -1,10 +1,11 @@ pkgbase = python-minesight-git pkgdesc = Minecraft OSINT tool pkgver = r1.c22400c - pkgrel = 1 + pkgrel = 2 url = https://github.com/Gobutsu/MineSight - arch = x86_64 - license = AGPL + arch = any + license = AGPL-3.0-only + makedepends = git makedepends = python-build makedepends = python-installer makedepends = python-wheel @@ -13,6 +14,8 @@ pkgbase = python-minesight-git depends = python-rich depends = python-beautifulsoup4 depends = python-jsonpath-ng + depends = python-importlib-metadata + depends = python-setuptools provides = minesight source = minesight::git+https://github.com/Gobutsu/MineSight.git#branch=master sha256sums = SKIP diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..26abe1add4f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg +src +*.pkg.* +minesight @@ -2,16 +2,24 @@ pkgname=python-minesight-git _pkgname=minesight pkgver=r1.c22400c -pkgrel=1 +pkgrel=2 pkgdesc="Minecraft OSINT tool" -arch=('x86_64') +arch=('any') url="https://github.com/Gobutsu/MineSight" -license=('AGPL') -depends=(python python-httpx python-rich python-beautifulsoup4 python-jsonpath-ng) -makedepends=(python-build python-installer python-wheel) +license=('AGPL-3.0-only') +depends=( + python + python-httpx + python-rich + python-beautifulsoup4 + python-jsonpath-ng + python-importlib-metadata + python-setuptools +) +makedepends=(git python-build python-installer python-wheel) provides=("$_pkgname") -source=("$_pkgname::git+https://github.com/Gobutsu/MineSight.git#branch=master") +source=("$_pkgname::git+$url.git#branch=master") sha256sums=('SKIP') pkgver() { |