summaryrefslogtreecommitdiffstats
path: root/ctags/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'ctags/Pkgfile')
-rwxr-xr-xctags/Pkgfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/ctags/Pkgfile b/ctags/Pkgfile
new file mode 100755
index 000000000..ffb5bbfb8
--- /dev/null
+++ b/ctags/Pkgfile
@@ -0,0 +1,18 @@
+# Description: Permet de générer un fichier d'index
+# URL: http://ctags.sourceforge.net/
+# Maintainer: NutyX core team
+# Packager: thierryn1 at hispeed dot ch
+
+name=ctags
+version=5.8
+release=1
+source=(http://prdownloads.sourceforge.net/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man
+ make
+ make prefix=$PKG/usr mandir=$PKG/usr/share/man install
+
+}