mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-02-19 12:04:54 +00:00
Add drone.io build badge
This commit is contained in:
parent
8708ef9503
commit
e1520734a4
2 changed files with 21 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
# dindexer #
|
||||
## Debug build status ##
|
||||
[![Build Status](https://drone.io/bitbucket.org/King_DuckZ/dindexer/status.png)](https://drone.io/bitbucket.org/King_DuckZ/dindexer/latest)
|
||||
|
||||
# What is dindexer? #
|
||||
dindexer (from "Disc Indexer") is a program to help you keep track of where your files are as you back them up on external media. It's like updatedb/locate, but it's thought for never changing removable media, such as DVDs and BluRays.
|
||||
|
||||
|
|
17
drone_configuration
Normal file
17
drone_configuration
Normal file
|
@ -0,0 +1,17 @@
|
|||
Configuration for drone.io
|
||||
|
||||
cd ..
|
||||
wget --no-check-certificate --quiet https://cmake.org/files/v3.4/cmake-3.4.1-Linux-x86_64.sh
|
||||
echo y > cmake.input
|
||||
echo n >> cmake.input
|
||||
sudo sh cmake-3.4.1-Linux-x86_64.sh --prefix=/opt < cmake.input > /dev/null
|
||||
export PATH=/opt/bin:$PATH
|
||||
sudo add-apt-repository ppa:smfengler/ppa > /dev/null 2>&1
|
||||
sudo add-apt-repository ppa:boost-latest/ppa > /dev/null 2>&1
|
||||
sudo apt-get -qq update
|
||||
sudo apt-get -qq install libyaml-cpp-dev libboost1.55-dev libboost-program-options1.55-dev
|
||||
echo 2 | sudo update-alternatives --config gcc
|
||||
mkdir dindexer_build
|
||||
cd dindexer_build
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug ../dindexer
|
||||
make
|
Loading…
Add table
Reference in a new issue