Fix dependencies and enable perl regular expressions

This commit is contained in:
2025-03-12 21:20:37 +02:00
parent d767d8e227
commit acab58da62
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
name: grep name: grep
description: GNU string search utility description: GNU string search utility
version: 3.11 version: 3.11
revision: 2
url: https://www.gnu.org/software/grep/ url: https://www.gnu.org/software/grep/
license: GPL3 license: GPL3
architecture: any architecture: any
depends: ["glibc"] depends: ["glibc", "pcre2"]
make_depends: ["bash","binutils","coreutils","diffutils","gcc","gettext","glibc","grep","make","patch","sed","texinfo"] make_depends: ["texinfo"]
type: source type: source
+1 -1
View File
@@ -15,7 +15,7 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
./configure --prefix=/usr --disable-perl-regexp ./configure --prefix=/usr
make make
} }