We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d614cba commit 126af76Copy full SHA for 126af76
recipes/findutils
@@ -0,0 +1,30 @@
1
+name=findutils
2
+version=4.9.0
3
+revision=1
4
+tarball_url="https://ftp.gnu.org/gnu/findutils/findutils-${version}.tar.xz"
5
+tarball_blake2b="3ada8903fc552ad2e580a7b631a4b9d941935b3f4231029564c6f2b7b10ba6f2244e2de57f6d79268c5e0481a193f64edbbae637e7a51ae6f495e3eefabf52c9"
6
+source_hostdeps="automake autoconf libtool pkg-config"
7
+imagedeps="python"
8
+hostdeps="gcc autoconf automake libtool pkg-config"
9
+deps="core-libs"
10
+
11
+regenerate() {
12
+ autotools_recursive_regen
13
+}
14
15
+build() {
16
+ cp -rp "${source_dir}"/. ./
17
18
+ configure_script_path=./configure \
19
+ autotools_configure \
20
+ --without-selinux
21
22
+ make -j${parallelism}
23
24
25
+package() {
26
+ DESTDIR="${dest_dir}" make install
27
28
+ post_package_strip
29
30
0 commit comments