From 15f2706b5e6e2841446f156d2ab9c23644428509 Mon Sep 17 00:00:00 2001
From: "Urja (ARMLFS builder)" <urja+armlfs@urja.dev>
Date: Sun, 7 Jul 2024 00:10:59 +0300
Subject: [PATCH] makepkg: check for usr/lib64
---
scripts/libmakepkg/lint_package/meson.build | 1 +
.../libmakepkg/lint_package/usrlib64.sh.in | 39 +++++++++++++++++++
2 files changed, 40 insertions(+)
create mode 100644 scripts/libmakepkg/lint_package/usrlib64.sh.in
diff --git a/scripts/libmakepkg/lint_package/meson.build b/scripts/libmakepkg/lint_package/meson.build
index 8eb1aaf..0938a96 100644
--- a/scripts/libmakepkg/lint_package/meson.build
+++ b/scripts/libmakepkg/lint_package/meson.build
@@ -3,6 +3,7 @@ libmakepkg_module = 'lint_package'
sources = [
'build_references.sh.in',
'dotfiles.sh.in',
+ 'usrlib64.sh.in',
'file_names.sh.in',
'missing_backup.sh.in',
]
diff --git a/scripts/libmakepkg/lint_package/usrlib64.sh.in b/scripts/libmakepkg/lint_package/usrlib64.sh.in
new file mode 100644
index 0000000..f0f97ac
--- /dev/null
+++ b/scripts/libmakepkg/lint_package/usrlib64.sh.in
@@ -0,0 +1,39 @@
+#!/bin/bash
+#
+# usrlib64.sh - check for usr/lib64 directory
+#
+# Copyright (c) 2016-2024 Pacman Development Team <pacman-dev@lists.archlinux.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+[[ -n "$LIBMAKEPKG_LINT_PACKAGE_USRLIB64_SH" ]] && return
+LIBMAKEPKG_LINT_PACKAGE_USRLIB64_SH=1
+
+MAKEPKG_LIBRARY=${MAKEPKG_LIBRARY:-'@libmakepkgdir@'}
+
+source "$MAKEPKG_LIBRARY/util/message.sh"
+
+lint_package_functions+=('check_usrlib64')
+
+check_usrlib64() {
+ local ret=0
+
+ if [ -d "$pkgdir"/usr/lib64 ]; then
+ error "Package tried to create directory /usr/lib64"
+ ret=1
+ fi
+
+ return $ret
+}
--
2.44.0