blob: f9772e5312138f7797b371a7125f8a9a841c5ac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=ares-decrypt
pkgver=0.10.0
pkgrel=1
pkgdesc="Automated decoding of encrypted text without knowing the key or ciphers used."
arch=("x86_64")
url="https://github.com/bee-san/Ares"
license=("MIT")
makedepends=("git" "rust")
source=("git+${url}.git#tag=v${pkgver}")
sha256sums=('SKIP')
build(){
cd "${srcdir}/Ares"
cargo build --release
}
package(){
cd "${srcdir}/Ares"
install -Dm755 target/release/ares "${pkgdir}/usr/bin/${pkgname}"
# It seems to be conflict with existing aur/ares package
# However, they are not relative. Rename to avoid conflict
}
|