blob: 368cff946d700070d2a869d0290ec329ed9d0d70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Ahmed Jerjawi <your_email@example.com>
# URL: https://github.com/ahmadjerjawi/vfdecrypt-linux
# Description: A tool for decrypting .dmg files, reworked to support OpenSSL 3
# License: GPL-3.0
pkgname=vfdecrypt
pkgver=2025.1
pkgrel=1
pkgdesc="A tool for decrypting .dmg files, reworked to support OpenSSL 3"
arch=('x86_64')
url="https://github.com/ahmadjerjawi/vfdecrypt-linux"
license=('GPL3')
depends=('openssl')
source=("git+https://github.com/ahmadjerjawi/vfdecrypt-linux.git")
sha256sums=('SKIP')
build() {
cd "$srcdir/vfdecrypt-linux"
# Build the project
gcc -o vfdecrypt vfdecrypt.c -lssl -lcrypto
}
package() {
cd "$srcdir/vfdecrypt-linux"
# Install the binary
install -Dm755 vfdecrypt "$pkgdir/usr/bin/vfdecrypt"
}
|