Fixed errors in PKGBUILD
This commit is contained in:
parent
79df96441f
commit
6c6b979936
1 changed files with 4 additions and 4 deletions
8
PKGBUILD
8
PKGBUILD
|
@ -3,11 +3,11 @@ pkgver=0.1
|
|||
pkgrel=1
|
||||
pkgdesc="A collection of bash libraries that I tend to use in my scripts"
|
||||
arch=(any)
|
||||
changelog=CHANGELOG
|
||||
changelog=CHANGELOG.md
|
||||
license=('GPL3')
|
||||
depends=()
|
||||
source=(
|
||||
"${pkgname}::git+ssh://git@github.com/ayakael/${pkgname}/#branch=master"
|
||||
"${pkgname}::git+ssh://git@github.com/ayakael/${pkgname}.git#branch=master"
|
||||
)
|
||||
|
||||
sha256sums=(
|
||||
|
@ -22,7 +22,7 @@ prepare(){
|
|||
package() {
|
||||
|
||||
# Install the scripts
|
||||
for libs in $(find ${srcdir}/libs/. -type f); do
|
||||
install -Dm644 "${srcdir}/libs/${libs}" "${pkgdir}/usr/lib/bash-libs/$(echo ${libs} | sed 's|.sh||')"
|
||||
for libs in $(find ${srcdir}/bash-libs/libs/. -type f -printf %f); do
|
||||
install -Dm644 "${srcdir}/bash-libs/libs/${libs}" "${pkgdir}/usr/lib/bash-libs/$(echo ${libs} | sed 's|.sh||')"
|
||||
done
|
||||
}
|
||||
|
|
Reference in a new issue