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