archlinux-pkgbuilds/PKGBUILD

52 lines
1.3 KiB
Bash
Raw Normal View History

# 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
2015-07-30 15:36:01 +02:00
pkgver=release.v21.7.1.191.g113a84f
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')
makedepends=('git')
conflicts=('autojump')
provides=('autojump')
replaces=()
backup=()
source=('git+https://github.com/joelthelion/autojump.git')
md5sums=('SKIP')
_gitname="autojump"
pkgver() {
cd ${_gitname}
git describe --always | sed 's|-|.|g'
}
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
}
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
}
# vim:set ts=4 sw=4 et: