diff options
Diffstat (limited to 'source/ap/man-pages/man-pages.SlackBuild')
-rwxr-xr-x | source/ap/man-pages/man-pages.SlackBuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source/ap/man-pages/man-pages.SlackBuild b/source/ap/man-pages/man-pages.SlackBuild index ff779f11..c262f0ac 100755 --- a/source/ap/man-pages/man-pages.SlackBuild +++ b/source/ap/man-pages/man-pages.SlackBuild @@ -20,7 +20,7 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=${VERSION:-$(echo man-pages-3.*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +VERSION=${VERSION:-$(echo man-pages-4.*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} ARCH=noarch BUILD=${BUILD:-1} @@ -34,15 +34,15 @@ mkdir -p $TMP $PKG cd $TMP rm -rf man-pages-$VERSION tar xf $CWD/man-pages-$VERSION.tar.xz -tar xf $CWD/man-pages-posix-2003-a.tar.xz -chown -R root:root man-pages-$VERSION man-pages-posix-2003-a -chmod -R a-s,u+rw,go+r-w man-pages-$VERSION man-pages-posix-2003-a +tar xf $CWD/man-pages-posix-2013-a.tar.xz +chown -R root:root man-pages-$VERSION man-pages-posix-2013-a +chmod -R a-s,u+rw,go+r-w man-pages-$VERSION man-pages-posix-2013-a find man-pages-$VERSION \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -find man-pages-posix-2003-a \ +find man-pages-posix-2013-a \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ @@ -53,9 +53,9 @@ cp -a man-pages-$VERSION/* $PKG/usr/man # The pthread manpages are the only POSIX ones that anyone # has requested saving. If I missed anything important, let me know. -mv man-pages-posix-2003-a/man0p/pthread.h.0p $PKG/usr/man/man3/pthread.h.3p -mv man-pages-posix-2003-a/man3p/pthread_* $PKG/usr/man/man3 -cp man-pages-posix-2003-a/POSIX-COPYRIGHT $PKG/usr/man +mv man-pages-posix-2013-a/man0p/pthread.h.0p $PKG/usr/man/man3/pthread.h.3p +mv man-pages-posix-2013-a/man3p/pthread_* $PKG/usr/man/man3 +cp man-pages-posix-2013-a/POSIX-COPYRIGHT $PKG/usr/man # Are these other POSIX manpages of any real usefulness here? # Granted there may be some historical interest, and it's nice # to have them in the source package for that reason, but it |