Skip to content

Commit 126af76

Browse files
feat(ports): add findutils
Signed-off-by: Anhad Singh <[email protected]>
1 parent d614cba commit 126af76

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

recipes/findutils

+30
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)