diff options
author | Luca D'Amico | 2023-11-09 13:26:22 +0100 |
---|---|---|
committer | Luca D'Amico | 2023-11-09 13:26:22 +0100 |
commit | 6d4d68acdd95d5c74aebc8e152e6dac79f02f8fc (patch) | |
tree | dc1bc8bd83b94fb32539728b440b5b566b7c706e | |
parent | 2280d81c660944eb741532fef5a85a3ee6b9bb19 (diff) | |
download | aur-6d4d68acdd95d5c74aebc8e152e6dac79f02f8fc.tar.gz |
Updated malcat-lite to version 0.9.4
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 12 insertions, 11 deletions
@@ -1,12 +1,11 @@ pkgbase = malcat-lite pkgdesc = Malcat is a feature-rich hexadecimal editor / disassembler for Windows and Linux targeted to IT-security professionals. - pkgver = 0.9.3 - pkgrel = 2 + pkgver = 0.9.4 + pkgrel = 1 url = https://malcat.fr arch = x86_64 license = Custom depends = gtk3 - depends = python310 depends = python-pycryptodomex depends = python-pyasn1 depends = python-pyasn1-modules @@ -16,9 +15,9 @@ pkgbase = malcat-lite depends = python-requests depends = python-dissect.cstruct depends = python-tabulate - source = https://malcat.fr/latest/malcat_ubuntu22_lite.zip + source = https://malcat.fr/latest/malcat_ubuntu23_lite.zip source = malcat-lite.desktop - sha256sums = 7c4549c1aa9d9dc966887e11d640201fe8dc964f988d83ece3522846e27d8c99 + sha256sums = 3651a790c58ba156ac368acbb4cad6d9d02e306ad3355f3b9de4a9d500f84e41 sha256sums = 823099b512653d9e1aa3d09be42f0ce737248cab29ea8dd3bb2a3c4916922a04 pkgname = malcat-lite @@ -1,20 +1,22 @@ -# Maintainer: Luca D'Amico <damico.luca91@live.it> +# Maintainer: Luca D'Amico <damico.luca91[at]live.it> + pkgname=malcat-lite -pkgver=0.9.3 -pkgrel=2 +pkgver=0.9.4 +pkgrel=1 pkgdesc="Malcat is a feature-rich hexadecimal editor / disassembler for Windows and Linux targeted to IT-security professionals." arch=('x86_64') url="https://malcat.fr" license=('Custom') -depends=('gtk3' 'python310' 'python-pycryptodomex' 'python-pyasn1' 'python-pyasn1-modules' 'python-ruamel-yaml' +depends=('gtk3' 'python-pycryptodomex' 'python-pyasn1' 'python-pyasn1-modules' 'python-ruamel-yaml' 'python-ruamel.yaml.clib' 'python-six' 'python-requests' 'python-dissect.cstruct' 'python-tabulate') -source=("https://malcat.fr/latest/malcat_ubuntu22_lite.zip" +source=("https://malcat.fr/latest/malcat_ubuntu23_lite.zip" "malcat-lite.desktop") -sha256sums=('7c4549c1aa9d9dc966887e11d640201fe8dc964f988d83ece3522846e27d8c99' +sha256sums=('3651a790c58ba156ac368acbb4cad6d9d02e306ad3355f3b9de4a9d500f84e41' '823099b512653d9e1aa3d09be42f0ce737248cab29ea8dd3bb2a3c4916922a04') package() { mkdir -p $pkgdir/opt/$pkgname $pkgdir/usr/bin/ $pkgdir/usr/share/applications/ + rm $srcdir/malcat_ubuntu23_lite.zip $srcdir/malcat-lite.desktop cp -R $srcdir/* $pkgdir/opt/$pkgname install -Dm 644 $pkgdir/opt/$pkgname/static/icone.png $pkgdir/usr/share/pixmaps/$pkgname.png install -Dm 644 $startdir/$pkgname.desktop $pkgdir/usr/share/applications/ |