# $Id: PKGBUILD 101099 2010-11-27 21:03:01Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: John Proctor pkgname=ctags pkgver=5.8 pkgrel=2 pkgdesc="Generates an index file of language objects found in source files" arch=('i686' 'x86_64') license=('GPL') depends=('glibc') url="http://ctags.sourceforge.net/" source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('c00f82ecdcc357434731913e5b48630d') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr \ --disable-external-sort make || return 1 make prefix=${pkgdir}/usr install }