1
0
mirror of https://gitlab.com/JKANetwork/jka-toolkit.git synced 2026-03-01 00:13:55 +01:00
This commit is contained in:
JoseluCross
2016-05-22 14:03:42 +02:00
parent b67d562ca2
commit 796f2eb977
4 changed files with 46 additions and 0 deletions

19
pkgbuild/PKGBUILD Normal file
View File

@@ -0,0 +1,19 @@
# 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/"
}