blob: f29563d8af5d86a396f8b22d007a4d139d99ba07 (
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
30
31
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=unshc
pkgver=0.8
pkgrel=25
epoch=
pkgdesc="UnSHc is a tool to reverse the encryption of any SHc encrypted *.sh.x script. (shc < 4.0.3)"
arch=($CARCH)
url="https://github.com/yanncam/UnSHc"
license=('GPL-3.0-only')
groups=()
depends=('bash')
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname}::git+${url}.git")
noextract=()
sha256sums=('SKIP')
#validpgpkeys=()
package() {
install -Dm0755 "${srcdir}/${pkgname}/release/${pkgver}/${pkgname}-v${pkgver}.sh" "${pkgdir}/usr/bin/${pkgname}"
}
|