diff options
Diffstat (limited to 'source/e')
-rwxr-xr-x | source/e/emacs/emacs.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/e/emacs/emacs.SlackBuild b/source/e/emacs/emacs.SlackBuild index 7aa4d9db..64552b39 100755 --- a/source/e/emacs/emacs.SlackBuild +++ b/source/e/emacs/emacs.SlackBuild @@ -27,9 +27,9 @@ # Modified by Patrick Volkerding <volkerdi@slackware.com> PKGNAM=emacs -BUILD=${BUILD:-1} +BUILD=${BUILD:-3} # Determine version number the tarball is labeled with: -TARBALLVER=${TARBALLVER:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} +TARBALLVER=${TARBALLVER:-$(echo $PKGNAM-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} # OK, now what's being used as the source directory version number... account # for subversions a, b, c, and d in the $TARBALLVER: SRCDIRVER=$(echo $TARBALLVER | tr -d a | tr -d b | tr -d c | tr -d d) @@ -72,7 +72,7 @@ rm -rf $PKG mkdir -p $TMP $PKG cd $TMP rm -rf $PKGNAM-$TARBALLVER -tar xvf $CWD/$PKGNAM-$TARBALLVER.tar.?z* || exit 1 +tar xvf $CWD/$PKGNAM-$TARBALLVER.tar.xz || exit 1 cd $PKGNAM-$SRCDIRVER || exit 1 chown -R root:root . @@ -95,7 +95,7 @@ CXXFLAGS="$SLKCFLAGS" \ --without-gconf \ --without-gsettings \ --with-x \ - --with-x-toolkit=gtk \ + --with-x-toolkit=gtk2 \ --build=${ARCH}-slackware-linux make $NUMJOBS || make || exit 1 @@ -110,7 +110,7 @@ make install DESTDIR=$PKG || exit 1 # Also add a version of the binary that is not linked to X11: cd $TMP rm -rf $PKGNAM-$TARBALLVER -tar xvf $CWD/$PKGNAM-$TARBALLVER.tar.?z* || exit 1 +tar xvf $CWD/$PKGNAM-$TARBALLVER.tar.xz || exit 1 cd $PKGNAM-$SRCDIRVER || exit 1 chown -R root:root . |