mirror of
https://gitlab.com/JKANetwork/jka-toolkit.git
synced 2026-02-17 02:21:31 +01:00
21 lines
635 B
Bash
21 lines
635 B
Bash
# Maintainer: JKA Network (JoseluCross, Kprkpr, Yukialba) <contacto@jkanetwork.com>
|
|
pkgname=jka-toolkit
|
|
pkgver=0.2.3
|
|
pkgrel=2
|
|
pkgdesc="Set of scripts to optimize the daily work in linux shell (jkazip and apw)"
|
|
arch=('any')
|
|
url="http://proyecto.jkanetwork.com"
|
|
license=('GPL3')
|
|
depends=('p7zip' 'unrar' 'unzip' 'tar' 'zip' 'facter')
|
|
provides=('jkazip' 'apw')
|
|
options=(!emptydirs)
|
|
install=$pkgname.install
|
|
source=(https://gitlab.com/JKANetwork/jka-toolkit/raw/master/jka-toolkit.tar.gz)
|
|
md5sums=('bfdecb9f720f66933f9ad1f07634e68c')
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
mkdir -p $pkgdir/usr/bin
|
|
install -Dm755 * "$pkgdir/usr/bin/"
|
|
}
|