Skip to content

Instantly share code, notes, and snippets.

@marsam
Created November 3, 2013 20:48
Show Gist options
  • Select an option

  • Save marsam/7294632 to your computer and use it in GitHub Desktop.

Select an option

Save marsam/7294632 to your computer and use it in GitHub Desktop.
pkgbuild for vim-jp fork of ctags. https://github.com/vim-jp/ctags
# Maintainer: Mario Rodas <rodasmario2@gmail.com>
pkgname=vim-jp-ctags
pkgver=0.r792.3424a7c
pkgrel=1
pkgdesc="Vim-jp fork of ctags."
arch=('i686' 'x86_64')
license=('GPL')
depends=('glibc')
provides=('ctags')
url="https://github.com/vim-jp/ctags"
source=('git+https://github.com/vim-jp/ctags.git')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/ctags"
printf "0.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/ctags"
autoheader
autoconf
./configure --prefix=/usr \
--disable-external-sort
make
}
package() {
cd "$srcdir/ctags"
make prefix=${pkgdir}/usr install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment