Update package version to 2.5.4

This commit is contained in:
2025-03-13 10:48:00 +02:00
parent a5664ebc99
commit 18aaa563d4
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
name: libtool name: libtool
description: A generic library support script description: A generic library support script
version: 2.4.7 version: 2.5.4
url: https://www.gnu.org/software/libtool/ url: https://www.gnu.org/software/libtool/
license: GPL2-or-later-with-libtool-exception license: GPL2-or-later-with-libtool-exception
architecture: any architecture: any
depends: ["autoconf","automake","bash","binutils","coreutils","file","gcc","glibc","grep","make","sed"] depends: ["glibc", "sh", "tar"]
make_depends: ["bash","binutils","coreutils","diffutils","gawk","gcc","glibc","grep","make","sed","texinfo"] make_depends: ["gcc","help2man"]
type: source type: source
+2 -2
View File
@@ -15,14 +15,14 @@ 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 ./configure --prefix=/usr lt_cv_sys_lib_dlsearch_path_spec="/usr/lib"
make make
} }
# The check function is executed in the source directory # The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
make -k check make check
} }
# The package function is executed in the source directory # The package function is executed in the source directory