diff options
author | davidovski <david@davidovski.xyz> | 2022-09-10 23:00:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-09-10 23:00:02 +0100 |
commit | 24998e21676efbd0801bb9a56d167eaf273d44d7 (patch) | |
tree | bd5c13247a9e3d25211f41f358718f2d7447a60c /repo/ext-dump | |
parent | c38dfe6188112ca490090966a63faefe5ec7e9a0 (diff) |
Added cmatrix and updated a few
Diffstat (limited to 'repo/ext-dump')
-rw-r--r-- | repo/ext-dump/ext-dump.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/ext-dump/ext-dump.xibuild b/repo/ext-dump/ext-dump.xibuild new file mode 100644 index 0000000..d4f12a3 --- /dev/null +++ b/repo/ext-dump/ext-dump.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="ext-dump" +DESC="ext2 dump and restore utilities" + +MAKEDEPS="make " +DEPS="musl " + +PKG_VER=0.4b47 +SOURCE="https://sourceforge.net/projects/dump/files/dump/$PKG_VER/dump-$PKG_VER.tar.gz/download" + +build () { + ./configure \ + --prefix=/usr \ + --bindir=/usr/bin \ + --sysconfdir=/etc \ + --disable-static + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |