upgpkg: autojump-git 22.5.3.r0.g06e082c-2
import corrections from autojump PKGBUILD
This commit is contained in:
parent
7b67077764
commit
684c0ea03d
2 changed files with 16 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
pkgbase = autojump-git
|
pkgbase = autojump-git
|
||||||
pkgdesc = A faster way to navigate your filesystem from the command line
|
pkgdesc = A faster way to navigate your filesystem from the command line
|
||||||
pkgver = 22.5.3.r0.g06e082c
|
pkgver = 22.5.3.r0.g06e082c
|
||||||
pkgrel = 1
|
pkgrel = 2
|
||||||
url = http://github.com/wting/autojump
|
url = http://github.com/wting/autojump
|
||||||
arch = any
|
arch = any
|
||||||
license = GPL3
|
license = GPL3
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
pkgname=autojump-git
|
pkgname=autojump-git
|
||||||
pkgver=22.5.3.r0.g06e082c
|
pkgver=22.5.3.r0.g06e082c
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc="A faster way to navigate your filesystem from the command line"
|
pkgdesc="A faster way to navigate your filesystem from the command line"
|
||||||
arch=(any)
|
arch=(any)
|
||||||
url="http://github.com/wting/autojump"
|
url="http://github.com/wting/autojump"
|
||||||
|
@ -14,8 +14,6 @@ depends=('python')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
conflicts=('autojump')
|
conflicts=('autojump')
|
||||||
provides=('autojump')
|
provides=('autojump')
|
||||||
replaces=()
|
|
||||||
backup=()
|
|
||||||
source=('git+https://github.com/wting/autojump.git')
|
source=('git+https://github.com/wting/autojump.git')
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
@ -41,8 +39,20 @@ package() {
|
||||||
"${pkgdir}"/etc/profile.d/$i
|
"${pkgdir}"/etc/profile.d/$i
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# FS#60929
|
||||||
|
install -d "${pkgdir}/usr/lib/$_python/site-packages"
|
||||||
|
mv ${pkgdir}/usr/bin/*.py "${pkgdir}/usr/lib/$_python/site-packages"
|
||||||
|
python -m compileall -d /usr/lib "${pkgdir}/usr/lib"
|
||||||
|
python -O -m compileall -d /usr/lib "${pkgdir}/usr/lib"
|
||||||
|
|
||||||
|
# FS#49601
|
||||||
|
install -d "${pkgdir}"/usr/share/fish/completions
|
||||||
|
mv "${pkgdir}"/etc/profile.d/$_gitname.fish "${pkgdir}"/usr/share/fish/completions
|
||||||
|
|
||||||
# https://github.com/joelthelion/autojump/pull/339
|
# https://github.com/joelthelion/autojump/pull/339
|
||||||
sed -i "s!/usr/local/!/usr/!g" "${pkgdir}"/etc/profile.d/$_gitname.sh
|
sed -i "s!/usr/local/!/usr/!g" "${pkgdir}"/etc/profile.d/$_gitname.sh
|
||||||
|
sed -i "s!/build/${pkgname}/pkg/${pkgname}/!/!g" "${pkgdir}"/etc/profile.d/$_gitname.sh
|
||||||
|
|
||||||
# FS#43762
|
# FS#43762
|
||||||
sed -i '27,31d' "${pkgdir}"/etc/profile.d/$_gitname.sh
|
sed -i '27,31d' "${pkgdir}"/etc/profile.d/$_gitname.sh
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue