From 19b9a12a93a45cc02b31de9b40c45029fbf3c569 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 20 Mar 2022 00:00:54 +0000 Subject: changed the linux kernel configs --- repo/util/base64.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/util/base64.xibuild (limited to 'repo/util') diff --git a/repo/util/base64.xibuild b/repo/util/base64.xibuild new file mode 100644 index 0000000..ead717f --- /dev/null +++ b/repo/util/base64.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl" + +PKG_VER=1.5 + +SOURCE=https://www.fourmilab.ch/webtools/base64/base64-$PKG_VER.tar.gz +DESC="A utility to encode and decode files in base64" + +build () { + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +check () { + make check +} + + +package () { + install -d $PKG_DEST/usr/bin + install -d $PKG_DEST/usr/share/man/man1 + make DESTDIR=$PKG_DEST install +} + + -- cgit v1.2.1