2014-03-10 15:35:05 +01:00
|
|
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
|
|
|
# Contributor: Jason Axelson <jason.axelsonATgmail.com>
|
|
|
|
# Contributor: Sean Escriva <sean.escrivaATgmail.com>
|
|
|
|
# Contributor: William Ting <william.h.tingATgmail.com>
|
|
|
|
|
|
|
|
pkgname=autojump-git
|
2016-05-18 11:03:01 +02:00
|
|
|
pkgver=22.3.0.r14.g9a6e286
|
2014-03-10 15:35:05 +01:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A faster way to navigate your filesystem from the command line"
|
|
|
|
arch=(any)
|
|
|
|
url="http://github.com/joelthelion/autojump"
|
|
|
|
license=('GPL3')
|
2015-07-30 15:36:01 +02:00
|
|
|
depends=('python')
|
2014-03-10 15:35:05 +01:00
|
|
|
makedepends=('git')
|
|
|
|
conflicts=('autojump')
|
|
|
|
provides=('autojump')
|
|
|
|
replaces=()
|
|
|
|
backup=()
|
|
|
|
source=('git+https://github.com/joelthelion/autojump.git')
|
|
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
_gitname="autojump"
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd ${_gitname}
|
2016-05-18 11:03:01 +02:00
|
|
|
git describe --long --tags | sed 's/^release\-v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
2014-03-10 15:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ${_gitname}
|
2015-07-30 15:36:01 +02:00
|
|
|
sed -i 's$#!/usr/bin/env python$#!/usr/bin/env python3$' bin/autojump bin/*.py
|
2014-03-10 15:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${_gitname}
|
2015-07-30 15:36:01 +02:00
|
|
|
./install.py --prefix 'usr/' --destdir "${pkgdir}" --zshshare 'usr/share/zsh/site-functions'
|
|
|
|
|
|
|
|
cd "${pkgdir}"/usr/share/$_gitname
|
|
|
|
for i in $_gitname.* ; do
|
|
|
|
ln -s /usr/share/$_gitname/$i \
|
|
|
|
"${pkgdir}"/etc/profile.d/$i
|
|
|
|
done
|
|
|
|
|
|
|
|
#https://github.com/joelthelion/autojump/pull/339
|
|
|
|
sed -i "s!/usr/local/!/usr/!g" "${pkgdir}"/etc/profile.d/$_gitname.sh
|
|
|
|
#FS#43762
|
|
|
|
sed -i '27,31d' "${pkgdir}"/etc/profile.d/$_gitname.sh
|
2014-03-10 15:35:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# vim:set ts=4 sw=4 et:
|