Skip to content

Commit

Permalink
to-release: released packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
noptrix committed Feb 26, 2025
1 parent 78a97cc commit e17ff2a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**BlackArch Linux** is an ArchLinux based penetration testing distribution for
penetration testers and security researchers. The repository contains
[2835 tools](https://www.blackarch.org/tools.html). You can install tools
[2840 tools](https://www.blackarch.org/tools.html). You can install tools
individually or in groups. BlackArch Linux is compatible with existing Arch
installs. For more information, see the installation instructions.

Expand Down
1 change: 0 additions & 1 deletion lists/to-release
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
gpp-decrypt
15 changes: 8 additions & 7 deletions packages/cloud_enum/PKGBUILD → packages/cloud-enum/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# See COPYING for license details.

pkgname=cloud_enum
_pkgname=cloud-enum
pkgver=0.7.r10.gd3c292c
pkgrel=1
pkgdesc='Multi-cloud OSINT tool. Enumerate public resources in AWS, Azure, and Google Cloud.'
Expand Down Expand Up @@ -29,20 +30,20 @@ package() {
cd $pkgname

install -dm 755 "$pkgdir/usr/bin"
install -dm 755 "$pkgdir/usr/share/$pkgname"
install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname/" *.md
install -dm 755 "$pkgdir/usr/share/$_pkgname"
install -Dm 644 -t "$pkgdir/usr/share/doc/$_pkgname/" *.md

install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm 644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"

rm -rf LICENSE *.md .gitignore .github tests requirements.txt

cp -a * "$pkgdir/usr/share/$pkgname/"
cp -a * "$pkgdir/usr/share/$_pkgname/"

cat > "$pkgdir/usr/bin/$pkgname" << EOF
cat > "$pkgdir/usr/bin/$_pkgname" << EOF
#!/bin/sh
exec python /usr/share/$pkgname/cloud_enum.py "\$@"
exec python /usr/share/$_pkgname/cloud_enum.py "\$@"
EOF

chmod a+x "$pkgdir/usr/bin/$pkgname"
chmod +x "$pkgdir/usr/bin/$_pkgname"
}

4 changes: 2 additions & 2 deletions packages/gpp-decrypt/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pkgver=14.c71c7a6
pkgrel=1
pkgdesc='Parse the Group Policy Preferences XML file which extracts the username and decrypts the cpassword attribute.'
arch=('any')
groups=('blackarch' 'blackarch-crypto')
groups=('blackarch' 'blackarch-crypto' 'blackarch-cracker')
url='https://github.com/t0thkr1s/gpp-decrypt'
license=('GPL-3.0-or-later')
depends=('python' 'python-colorama' 'python-crypto')
Expand Down Expand Up @@ -47,6 +47,6 @@ package() {
exec python /usr/share/$pkgname/gpp-decrypt.py "\$@"
EOF

chmod a+x "$pkgdir/usr/bin/$pkgname"
chmod +x "$pkgdir/usr/bin/$pkgname"
}

0 comments on commit e17ff2a

Please sign in to comment.