From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/diffutils/diffutils.xibuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 repo/diffutils/diffutils.xibuild (limited to 'repo/diffutils') diff --git a/repo/diffutils/diffutils.xibuild b/repo/diffutils/diffutils.xibuild new file mode 100644 index 0000000..2a3d0cd --- /dev/null +++ b/repo/diffutils/diffutils.xibuild @@ -0,0 +1,19 @@ +#!/bin/sh + +MAKEDEPS="make sort" +DEPS="musl sh" + +PKG_VER=0.8.6 +SOURCE=http://landley.net/toybox/downloads/toybox-$PKG_VER.tar.gz +DESC="Utility programs for creating patch files" + +build () { + make defconfig + make diff + make cmp +} + +package () { + install -Dm755 diff $PKG_DEST/usr/bin/ + install -Dm755 cmp $PKG_DEST/usr/bin/ +} -- cgit v1.2.1