# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). # See COPYING for license details. pkgname=eindeutig pkgver=20050628_1 pkgrel=5 pkgdesc='Examine the contents of Outlook Express DBX email repository files.' arch=('x86_64' 'aarch64') groups=('blackarch' 'blackarch-forensic') url='https://www.jonesdykstra.com/' license=('GPL-1.0-or-later') source=("https://downloads.sourceforge.net/project/fast/Eindeutig/Eindeutig%20v20050628_1/${pkgname}_${pkgver}.zip") sha512sums=('1263acb7d67514821f3186f47da9796e043fe8334369675078024435739dba3838ffdf0a75cb5e1d97119960e43f61e5a0a7ab86f2f724e5240ac4277114a8e4') prepare(){ cd "${pkgname}_$pkgver/src" mv Eindeutig.c eindeutig.c sed -i "s/#include /#include \n#include /g" \ eindeutig.c } build() { cd "${pkgname}_$pkgver/src" make } package() { cd "${pkgname}_$pkgver/src" # Renaming to dbxparse as the usage is for dbxparse not eindeutig. install -Dm 755 "../bin/$pkgname" "$pkgdir/usr/bin/dbxparse" }