fix: remove tar archive and use instead local files
This commit is contained in:
parent
1bdae55f6e
commit
b379c8dc23
@ -1,6 +0,0 @@
|
||||
build:
|
||||
tar --create --bzip2 --file git-prompt-sources.tar.bz2 git-prompt.sh git-completion.sh
|
||||
makepkg --sign --force
|
||||
|
||||
install:
|
||||
makepkg --sign --force --install
|
@ -2,15 +2,21 @@
|
||||
|
||||
pkgname=git-prompt
|
||||
pkgver=0.1.0
|
||||
pkgrel=3
|
||||
pkgrel=4
|
||||
pkgdesc='A git prompt for bash'
|
||||
arch=('any')
|
||||
#url=https://github.com/volker-raschek/flucky
|
||||
#license=('Apache 2.0')
|
||||
depends=('bash')
|
||||
source=("git-prompt-sources.tar.bz2")
|
||||
sha256sums=('SKIP')
|
||||
source=(
|
||||
"local://git-prompt.sh"
|
||||
"local://git-completion.sh"
|
||||
)
|
||||
sha256sums=(
|
||||
"SKIP"
|
||||
"SKIP"
|
||||
)
|
||||
|
||||
package() {
|
||||
install -D --mode=0755 --target-directory=${pkgdir}/etc/bash_completion.d ${srcdir}/git-prompt.sh git-completion.sh
|
||||
install -D --mode=0755 --target-directory=${pkgdir}/etc/bash_completion.d ${srcdir}/git-prompt.sh ${srcdir}/git-completion.sh
|
||||
}
|
Loading…
Reference in New Issue
Block a user