diff options
Diffstat (limited to 'source/l/glib2')
-rwxr-xr-x | source/l/glib2/glib2.SlackBuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source/l/glib2/glib2.SlackBuild b/source/l/glib2/glib2.SlackBuild index bbb80679..ff7b4b89 100755 --- a/source/l/glib2/glib2.SlackBuild +++ b/source/l/glib2/glib2.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=glib2 VERSION=${VERSION:-$(echo glib-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} NUMJOBS=${NUMJOBS:-" -j7 "} @@ -126,7 +126,13 @@ cp -a \ AUTHORS COPYING* NEWS README* \ $PKG/usr/doc/glib-$VERSION rm -f $PKG/usr/doc/glib-$VERSION/README.{in,win32} -( cd $PKG/usr/doc/glib-$VERSION ; ln -s /usr/share/gtk-doc/html/gobject html ) + +# Make links to the documentation in /usr/share/gtk-doc/: +( cd $PKG/usr/doc/glib-$VERSION + for dir in $PKG/usr/share/gtk-doc/html/* ; do + ln -s /usr/share/gtk-doc/html/$(basename $dir) . + done +) # If there's a ChangeLog, installing at least part of the recent history # is useful, but don't let it get totally out of control: |