1
0
mirror of https://gitlab.com/JKANetwork/jka-toolkit.git synced 2026-02-19 19:41:31 +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

Binary file not shown.

17
pkgbuild/.SRCINFO Normal file
View File

@@ -0,0 +1,17 @@
pkgbase = jka-toolkit
pkgdesc = Set of scripts to optimize the daily work in linux shell
pkgver = 0.1.0
pkgrel = 1
url = http://proyecto.jkanetwork.com
install = jka-toolkit.install
arch = any
license = GPL3
depends = p7zip
depends = unrar
depends = unzip
options = !emptydirs
source = https://gitlab.com/JKANetwork/jka-toolkit/raw/master/jka-toolkit.tar.gz
md5sums = 2dad01d7405811b7ecb35e642ff10dd4
pkgname = jka-toolkit

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/"
}

View File

@@ -0,0 +1,10 @@
post_install() {
echo ""
echo "Thanks to install this kit"
echo "Scripts"
echo "jkazip - de/compress files and directories in many formats very easy"
}
post_upgrade() {
post_install
}