diff options
author | davidovski <david@davidovski.xyz> | 2021-10-02 23:21:53 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-02 23:21:53 +0100 |
commit | 16e799786f34721e646e14a2b7e7ab3816137f1a (patch) | |
tree | 82c05b6b1d5fc9d33cd864b27bfb1e3af3f01536 /psibuilds/file.psibuild | |
parent | c4e0c314e6eac6964328c9c3daeaa232ea06e965 (diff) |
added packages
Diffstat (limited to 'psibuilds/file.psibuild')
-rw-r--r-- | psibuilds/file.psibuild | 20 |
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 +} + + |