Skip to content

Commit e39d621

Browse files
committed
build: PKGBUILD installs lib/args-parse.sh properly
1 parent 54c8164 commit e39d621

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/bash-args-init

Lines changed: 0 additions & 1 deletion
This file was deleted.

package/aur/PKGBUILD

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Maintainer: Edwin Kofler <[email protected]>
22
pkgname='bash-args'
3-
pkgver='0.5.0'
3+
pkgver='0.6.0'
44
pkgrel='1'
55
pkgdesc='A cute little Bash library for blazing fast argument parsing'
66
arch=('any')
77
url="https://github.com/eankeen/bash-args"
88
license=('unknown')
99
depends=(bash)
1010
source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz)
11-
sha256sums=('144ae369fa414500ad806a27b28a557cd085fbceb207c98d69373f95955304c5')
11+
sha256sums=('3e2054c9df7009580059ad2663e2b7064b770644043c01dfab614f72f3d96c0b')
1212

1313
_mainfolder=$_name-$pkgver
1414

@@ -29,6 +29,7 @@ package() {
2929

3030
install -d "$pkgdir"/usr/{bin,lib/bash-args/util}
3131
install -m755 bin/* "$pkgdir/usr/bin"
32+
cp lib/args-parse.sh "$pkgdir/usr/lib/bash-args"
3233
install -m755 lib/util/* "$pkgdir/usr/lib/bash-args/util"
3334
# install -m644 lib/util/* "$pkgdir/lib/bash-args/util"
3435
}

0 commit comments

Comments
 (0)