summaryrefslogtreecommitdiff
path: root/psibuilds/file.psibuild
diff options
context:
space:
mode:
Diffstat (limited to 'psibuilds/file.psibuild')
-rw-r--r--psibuilds/file.psibuild20
1 files changed, 20 insertions, 0 deletions
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
+}
+
+