mirror of
https://gitlab.com/JKANetwork/jka-toolkit.git
synced 2026-02-18 11:01:32 +01:00
21 lines
620 B
Bash
21 lines
620 B
Bash
# Maintainer: JKA Network (JoseluCross, Kprkpr, Yukialba) <contacto@jkanetwork.com>
|
|
pkgname=jka-toolkit
|
|
pkgver=0.2.6
|
|
pkgrel=1
|
|
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' 'zip')
|
|
provides=('jkazip' 'apw')
|
|
options=(!emptydirs)
|
|
install=$pkgname.install
|
|
source=(https://gitlab.com/JKANetwork/jka-toolkit/raw/master/jka-toolkit.tar.gz)
|
|
md5sums=('e03abc17bdceffedd0176258613a46b8')
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname"
|
|
mkdir -p $pkgdir/usr/bin
|
|
install -Dm755 * "$pkgdir/usr/bin/"
|
|
}
|