From 16e799786f34721e646e14a2b7e7ab3816137f1a Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 2 Oct 2021 23:21:53 +0100 Subject: added packages --- psibuilds/file.psibuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 psibuilds/file.psibuild (limited to 'psibuilds/file.psibuild') diff --git a/psibuilds/file.psibuild b/psibuilds/file.psibuild new file mode 100644 index 0000000..9141847 --- /dev/null +++ b/psibuilds/file.psibuild @@ -0,0 +1,20 @@ +#!/bin/bash + +DEPS=(glibc ) + +SOURCE=https://github.com/file/file + + +build () { + # cheating + wget http://ftp.astron.com/pub/file/file-5.40.tar.gz + tar -zxf file-5.40.tar.gz + cd file-5.40 + + ./configure --prefix=/usr + make + make check + make DESTDIR=$PKG_DEST install +} + + -- cgit v1.2.1