1
0
forked from ports/opt

ctags: initial import

This commit is contained in:
Tilman Sauerbeck 2005-11-20 19:06:38 +00:00
parent 0d19c038c0
commit 2e8bf38d61
3 changed files with 23 additions and 0 deletions

6
ctags/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ctags
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/ctags.1.gz

1
ctags/.md5sum Normal file
View File

@ -0,0 +1 @@
32957044168e0722831b9557687c06e7 ctags-5.5.2.tar.gz

16
ctags/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: A multilanguage implementation of Ctags, for effective editing of source code.
# URL: http://ctags.sourceforge.net
# Maintainer: Tilman Sauerbeck, tilman at code-monkey dot de
# Packager: Håvard Moen, vanilje at netcom dot no
name=ctags
version=5.5.2
release=1
source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz)
build () {
cd $name-$version
./configure --prefix=/usr --disable-etags
make
make prefix=$PKG/usr install
}