diff options
author | davidovski <david@davidovski.xyz> | 2022-03-20 00:00:54 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-20 00:00:54 +0000 |
commit | 19b9a12a93a45cc02b31de9b40c45029fbf3c569 (patch) | |
tree | c2c415813d63b7773fa2a533789a1753b9fee724 /repo/util | |
parent | 1daf71c2980b1920bbdc2f07af669ebf6f0f82d6 (diff) |
changed the linux kernel configs
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/base64.xibuild | 27 |
1 files changed, 27 insertions, 0 deletions
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 +} + + |