summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIsmael Luceno2022-08-08 21:59:59 +0200
committerIsmael Luceno2022-08-08 22:00:43 +0200
commite7c6e74901fcc2f797cda961e2d45f446559348c (patch)
treedec3d0d1d7d49798d278cedfacdd4e9a3c6fb40a
parentf91d8da75ab8ba8cf3dc66040253def01af17f68 (diff)
i3: Fix installation of perl module
-rwxr-xr-xwindowmanagers/i3/DETAILS1
-rw-r--r--windowmanagers/i3/HISTORY2
-rwxr-xr-xwindowmanagers/i3/INSTALL6
3 files changed, 4 insertions, 5 deletions
diff --git a/windowmanagers/i3/DETAILS b/windowmanagers/i3/DETAILS
index 96640b150a..fce82aa878 100755
--- a/windowmanagers/i3/DETAILS
+++ b/windowmanagers/i3/DETAILS
@@ -1,6 +1,7 @@
source "$GRIMOIRE/MESON_FUNCTIONS"
SPELL=i3
VERSION=4.20.1
+ PATCHLEVEL=1
SOURCE="${SPELL}-${VERSION}.tar.xz"
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=https://i3wm.org/downloads/${SOURCE}
diff --git a/windowmanagers/i3/HISTORY b/windowmanagers/i3/HISTORY
index d6e29b5b05..44174fb9e3 100644
--- a/windowmanagers/i3/HISTORY
+++ b/windowmanagers/i3/HISTORY
@@ -1,5 +1,7 @@
2022-08-08 Ismael Luceno <ismael@sourcemage.org>
+ * INSTALL: fixed installation of perl module
* DEPENDS: improved descriptions
+ PATCHLEVEL++
2022-07-27 Vlad Glagolev <stealth@sourcemage.org>
* DEPENDS: switch to PKG-CONFIG provider (automated)
diff --git a/windowmanagers/i3/INSTALL b/windowmanagers/i3/INSTALL
index 980d1cc2a9..b67fbe4bd4 100755
--- a/windowmanagers/i3/INSTALL
+++ b/windowmanagers/i3/INSTALL
@@ -2,9 +2,5 @@ default_install &&
install -m755 -o root -g root "${SCRIPT_DIRECTORY}/starti3" "${INSTALL_ROOT}/usr/bin/" &&
if is_depends_enabled $SPELL perl; then
- cd "$SOURCE_DIRECTORY/AnyEvent-I3" &&
-
- default_install &&
-
- cd "$SOURCE_DIRECTORY"
+ ${MAKE:-make} -C AnyEvent-I3 install
fi