From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/system/findutils.xibuild | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 repo/system/findutils.xibuild (limited to 'repo/system/findutils.xibuild') diff --git a/repo/system/findutils.xibuild b/repo/system/findutils.xibuild new file mode 100644 index 0000000..d8fd39c --- /dev/null +++ b/repo/system/findutils.xibuild @@ -0,0 +1,16 @@ +#!/bin/bash + +DEPS=(glibc sh) + +SOURCE=https://ftp.gnu.org/gnu/findutils/findutils-4.8.0.tar.xz +DESC="GNU utilities to locate files" + +build () { + case $(uname -m) in + i?86) TIME_T_32_BIT_OK=yes ./configure --prefix=/usr --localstatedir=/var/lib/locate ;; + x86_64) ./configure --prefix=/usr --localstatedir=/var/lib/locate ;; + esac + + make + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1