diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/ctags/.footprint | 7 | ||||
-rwxr-xr-x | base/ctags/Pkgfile | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/base/ctags/.footprint b/base/ctags/.footprint index 101c8b577..7c208e304 100644 --- a/base/ctags/.footprint +++ b/base/ctags/.footprint @@ -1,6 +1,7 @@ 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 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/ctags.1.gz diff --git a/base/ctags/Pkgfile b/base/ctags/Pkgfile index 3a8fffa30..1a8f530e7 100755 --- a/base/ctags/Pkgfile +++ b/base/ctags/Pkgfile @@ -2,19 +2,20 @@ # URL: http://ctags.sourceforge.net/ # Maintainer: NutyX core team # Packager: thierryn1 at hispeed dot ch -# Depends on: glibc +# Depends on: name=ctags version=5.7 -release=1 +release=2 source=(http://prdownloads.sourceforge.net/$name/$name-$version.tar.gz) build() { cd $name-$version - ./configure --prefix=/usr + ./configure --prefix=/usr \ + --mandir=/usr/share/man make - make prefix=$PKG/usr install + make prefix=$PKG/usr mandir=$PKG/usr/share/man install } |