This commit is contained in:
2021-02-10 19:17:31 +01:00
commit f5d5488638

19
PKGBUILD Normal file
View File

@@ -0,0 +1,19 @@
# Maintainer: Fabian <fabian@ldsoft.dev>
pkgname=bashlib
pkgver=1.0
pkgrel=0
pkgdesc="Libraries for bash scripts"
arch=('any')
url="https://git.ldsoft.dev/ldSoft-Public/bashlib"
license=('GPL')
depends=()
source=("$pkgname"::"git+https://git.ldsoft.dev/ldSoft-Public/bashlib.git")
sha512sums=('SKIP')
package() {
cd "$srcdir/$pkgname"
mkdir -p "$pkgdir/usr/bin"
install -m644 ./bashcols "$pkgdir/usr/bin/bashcols"
}