mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 17:38:03 -05:00
* Add unbuilt updated pip packages to updates-2025-04-03-00-19 * Add unbuilt updated ruby gem packages to updates-2025-04-03-00-19 * Add built packages for linux/386 to updates-2025-04-03-00-19 * Add built packages for linux/amd64 to updates-2025-04-03-00-19 * Add built packages for linux/arm/v7 to updates-2025-04-03-00-19 * some i686 uodates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * some i686 uodates Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
789 B
Ruby
23 lines
789 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Sqlmap < Pip
|
|
description 'sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers.'
|
|
homepage 'https://sqlmap.org/'
|
|
version "1.9.4-#{CREW_PY_VER}"
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '571eaa07abc45e76850682033260d2efc9af87912d92fd6c6c9a006a2cc4abcc',
|
|
armv7l: '571eaa07abc45e76850682033260d2efc9af87912d92fd6c6c9a006a2cc4abcc',
|
|
i686: '867d11873873f5b19364a01fea5bdcc1344ca35e3019ad57affa3bc0695dfd45',
|
|
x86_64: '81e1d47b59b64e47b42f27ffdedca4c7d01ca64feddfb342e15c00c99ac8fa45'
|
|
})
|
|
|
|
depends_on 'python3', '>= 3.12.0'
|
|
|
|
no_source_build
|
|
end
|