summaryrefslogtreecommitdiff
path: root/extra/ctags
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-29 23:14:46 +0000
committerroot <root@rshg054.dnsready.net>2011-11-29 23:14:46 +0000
commit946f0c9fe48dfb648a8a0be065e92f237ce210fd (patch)
tree13387ae15c5ab9a50acdaa6ab02a076319c19047 /extra/ctags
parent83c3c42a38bda36bdc56d594318958bc4cfd9b32 (diff)
Tue Nov 29 23:14:46 UTC 2011
Diffstat (limited to 'extra/ctags')
-rw-r--r--extra/ctags/PKGBUILD13
1 files changed, 9 insertions, 4 deletions
diff --git a/extra/ctags/PKGBUILD b/extra/ctags/PKGBUILD
index be4e9e20d..4b8996c57 100644
--- a/extra/ctags/PKGBUILD
+++ b/extra/ctags/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 101099 2010-11-27 21:03:01Z giovanni $
+# $Id: PKGBUILD 143723 2011-11-28 17:13:34Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
pkgname=ctags
pkgver=5.8
-pkgrel=2
+pkgrel=3
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)
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('c00f82ecdcc357434731913e5b48630d')
build() {
@@ -18,6 +18,11 @@ build() {
./configure --prefix=/usr \
--disable-external-sort
- make || return 1
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
make prefix=${pkgdir}/usr install
}