Git Product home page Git Product logo

fileinsight's Introduction

FileInsight

FileInsight is a Qt-based file type identifier using libmagic (i.e. the Unix file command), Qt 5, and TrID as its backends. It is written in C++ and has been tested to work on both Windows and Linux.

Compilation / Installation

Linux

Linux installation is fairly straightforward. For icon display, FileInsight will simply use the icon theme configured on your desktop.

  1. Install Qt 5's development suite, Qt Creator, and libmagic's development files. On a Debian / Ubuntu system, this corresponds to apt-get install qt5-default libmagic-dev qtcreator.

  2. Build the project with Qt Creator.

  3. Optionally, you can download and install TrID from http://mark0.net/soft-trid-e.html (the backend works by calling it as a subprocess). TrID is free for personal and non-commercial use, but is NOT free as in FOSS.

Windows

Windows builds are a pain (no, really!). Instead, you may want to simply grab a Windows build from the releases page.

Getting all the required components

  1. Download and install MinGW and MSYS using this guide: http://www.mingw.org/wiki/Getting_Started

  2. Install Qt with MinGW from https://www.qt.io/download/..

  3. Fetch the sources for libmagic/file and its dependency libgnurx

Building libmagic/file

  1. Create an empty folder (prefix) to use as the prefix for building libgnurx and libmagic/file.

  2. Compile libgnurx into the empty prefix you created: in a MinGW shell, navigate to the source folder and run ./configure --prefix=THE FOLDER YOU CHOSE && make && make install

  3. Compile libmagic/file into the empty prefix you created: in a MinGW shell, navigate to the source folder and run:

  • export TARGET=THE FOLDER YOU CHOSE
  • autoreconf -f -i
  • LDFLAGS="-L$TARGET/lib -static-libgcc" CFLAGS="-I$TARGET/include" ./configure --prefix=$TARGET
  • make && make install
  1. Now that libmagic and libgnurx have been built, copy the contents of the libmagic build folder into the thirdparty/ directory of FileInsight's source. On Windows, this is where the toolchain will try to load its dependency libraries from.

Building FileInsight (MinGW)

  1. You should be able to build FileInsight now using Qt Creator + MinGW. However, in order for the resulting binary to run, you must copy the following into the directory of your resultant build:
  • bin/libgnurx-0.dll from the libmagic build
  • bin/libmagic-1.dll from the libmagic build
  • share/misc/magic.mgc (libmagic's data file) from the libmagic build
  • libgcc_s_dw2-1.dll from your MinGW root (e.g. C:\MinGW\bin)

Making a Redistributable Build

  1. Copy the windows-build-skeleton/ folder in FileInsight's source to somewhere else (this will be your "Windows build folder"). This folder includes the relevant copyright information that makes the build legally distributable (hopefully).

  2. Use windeployqt to copy the required Qt libraries to the Windows build folder: in a command line, run windeploy PATH-TO-FILEINSIGHT.EXE.

  3. Copy libgnurx-0.dll, libmagic-1.dll, libgcc_s_dw2-1.dll, and magic.mgc into the Windows build folder.

  4. Optional: for TrID backend support, extract TrID from http://mark0.net/soft-trid-e.html it into the thirdparty directory in the Windows build folder.

  5. Optional: for icon display, extract a prebuilt copy of the Oxygen icon theme (from a source like Debian) into the icons/ folder. Since simple tarball extraction may create (broken) Unix symlinks, they must be expanded so that FileInsight can actually load them.

  • You can use the bundled expand-symlinks.py in the scripts/ folder for this purpose: scripts/expand-symlinks.py PATH_TO_OXYGEN_ICONS

fileinsight's People

Contributors

jlu5 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.