Search Criteria
Package Details: phoneinfoga-bin 2.11.0-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/phoneinfoga-bin.git (read-only, click to copy) |
---|---|
Package Base: | phoneinfoga-bin |
Description: | Information gathering & OSINT framework for phone numbers |
Upstream URL: | https://sundowndev.github.io/phoneinfoga/ |
Licenses: | GPL-3.0-only |
Conflicts: | phoneinfoga |
Provides: | phoneinfoga |
Submitter: | mh4ckwascut |
Maintainer: | mh4ckwascut |
Last Packager: | mh4ckwascut |
Votes: | 3 |
Popularity: | 0.003206 |
First Submitted: | 2024-03-06 19:38 (UTC) |
Last Updated: | 2025-04-27 12:57 (UTC) |
Latest Comments
mh4ckwascut commented on 2025-04-27 12:57 (UTC)
Thanks, fixed.
Enthros commented on 2025-04-26 00:42 (UTC) (edited on 2025-04-26 00:45 (UTC) by Enthros)
Subject: Build failure in package() (v2.11.0-1)
The build currently fails in the package() function for version 2.11.0-1. The install command looks for $pkgname ('phoneinfoga-bin') as the source file, but the actual executable in the archive downloaded from the GitHub release is named 'phoneinfoga'.
Fix: The first argument of the install command in the package() function should be changed to "phoneinfoga":
Diff
--- a/PKGBUILD +++ b/PKGBUILD @@ -11,5 +11,5 @@ sha256sums=("6173dfc4ec009a6fe688068bac5a250646f5a8f56409098f5edcc7e404b12a52")
package() {
install -Dm755 "$pkgname" "$pkgdir"/usr/bin/"$pkgname"
install -Dm755 "phoneinfoga" "$pkgdir"/usr/bin/"$pkgname"
}
Thanks!
9bcfbc1ca230857b commented on 2019-06-18 20:02 (UTC)
Changed the wiki url and added geckodriver as an optional dependency.
yochananmarqos commented on 2019-06-18 19:52 (UTC)
New wiki URL: https://sundowndev.github.io/PhoneInfoga
It appears
geckodriver
should also be added to dependencies.9bcfbc1ca230857b commented on 2019-06-11 19:59 (UTC)
Of course. My bad. Thank you for pointing out.
DarwinSurvivor commented on 2019-06-10 23:55 (UTC) (edited on 2019-06-10 23:56 (UTC) by DarwinSurvivor)
You need to either pass the arguments from /usr/bin/phoneinfoga to /usr/share/phoneinfoga/phoneinfoga.py or just make it a symlink and let the shebang in the phoneinfoga.py handle the python3 call.