diff options
author | B. Watson <urchlay@slackware.uk> | 2024-10-17 02:03:03 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-11-02 19:28:30 +0700 |
commit | 2ab2f76ee0e5fa19e3301430567a1bdce0b52699 (patch) | |
tree | d4657f6b059deffb31506224b74eccbc85aa7254 /development/highlight/highlight.SlackBuild | |
parent | 97cb7e881c7c47deed9aba781e6bea73a817c82a (diff) |
development/highlight: Build with lua 5.4.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/highlight/highlight.SlackBuild')
-rw-r--r-- | development/highlight/highlight.SlackBuild | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/development/highlight/highlight.SlackBuild b/development/highlight/highlight.SlackBuild index ebb3bf94e0..0ac103806a 100644 --- a/development/highlight/highlight.SlackBuild +++ b/development/highlight/highlight.SlackBuild @@ -22,11 +22,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20241017 bkw: Modified by SlackBuilds.org, BUILD=2: build with lua-5.4. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=highlight VERSION=${VERSION:-4.7} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -42,9 +44,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -65,9 +64,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -#Patch so gui links with lua5.1 instead of lua5.3 and fail. -patch -p1 < $CWD/lua-qt.patch - make cli gui make -j1 install install-gui DESTDIR=$PKG |