diff --git a/polyglotman/.footprint b/polyglotman/.footprint index 3f495ad6..2f4fc981 100644 --- a/polyglotman/.footprint +++ b/polyglotman/.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/rman -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/rman.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/rman.1.gz diff --git a/polyglotman/Pkgfile b/polyglotman/Pkgfile index ee510703..08ec0f38 100644 --- a/polyglotman/Pkgfile +++ b/polyglotman/Pkgfile @@ -4,7 +4,7 @@ name=polyglotman version=3.2 -release=1 +release=2 source=(http://downloads.sourceforge.net/project/$name/$name/$version/rman-$version.tar.gz) build() { @@ -13,7 +13,7 @@ build() { make install -d $PKG/usr/bin - install -d $PKG/usr/man/man1 + install -d $PKG/usr/share/man/man1 - make BINDIR=$PKG/usr/bin MANDIR=$PKG/usr/man/man1 install + make BINDIR=$PKG/usr/bin MANDIR=$PKG/usr/share/man/man1 install }