mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
13 lines
309 B
Bash
Executable File
13 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
echo "Building TSK..."
|
|
cd sleuthkit/sleuthkit
|
|
./bootstrap && ./configure --prefix=/usr && make
|
|
pushd bindings/java && ant -q dist && popd
|
|
|
|
echo "Building Autopsy..." && echo -en 'travis_fold:start:script.build\\r'
|
|
cd $TRAVIS_BUILD_DIR/
|
|
ant build
|
|
echo -en 'travis_fold:end:script.build\\r'
|