forked from dragly/neuronify
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
FROM ubuntu:16.04 | ||
FROM snapcore/snapcraft | ||
|
||
RUN apt-get -qq update | ||
RUN apt-get install -qq sudo | ||
|
||
RUN sudo apt-get -qq update | ||
RUN sudo apt-get -qq install software-properties-common | ||
RUN sudo apt-get -qq install python-software-properties | ||
#RUN sudo apt-add-repository -y ppa:beineri/opt-qt57-xenial | ||
#RUN sudo apt-get -qq update | ||
#RUN sudo apt-get -qq install qt573d qt57charts-no-lgpl qt57datavis-no-lgpl qt57declarative qt57svg | ||
RUN sudo apt-add-repository -y ppa:beineri/opt-qt57-xenial | ||
RUN sudo apt-get -qq update | ||
RUN sudo apt-get -qq install qt573d qt57charts-no-lgpl qt57datavis-no-lgpl qt57declarative qt57svg | ||
|
||
# install packages needed by configure | ||
#RUN sudo apt-get -qq install patch git build-essential curl | ||
RUN sudo apt-get -qq install patch git build-essential curl | ||
|
||
# needed by build | ||
#RUN sudo apt-get -qq install mesa-common-dev\ | ||
# libgl1-mesa-dev\ | ||
# libboost-dev\ | ||
# libarmadillo-dev\ | ||
# catch | ||
|
||
# needed by deploy | ||
RUN sudo apt-get -qq install snapcraft | ||
|
||
WORKDIR /app | ||
|
||
ADD . /app/ | ||
RUN sudo apt-get -qq install mesa-common-dev\ | ||
libgl1-mesa-dev\ | ||
libboost-dev\ | ||
libarmadillo-dev\ | ||
catch |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: neuronify | ||
version: 0.94 | ||
summary: Neuronify is a neural network simulator | ||
description: The simulator is built using the integrate-and-fire model. | ||
|
||
build-packages: | ||
- cmake | ||
- gettext | ||
- intltool | ||
- ubuntu-touch-sounds | ||
- suru-icon-theme | ||
- qml-module-qttest | ||
- qml-module-qtsysteminfo | ||
- qml-module-qt-labs-settings | ||
- qtdeclarative5-u1db1.0 | ||
- qtdeclarative5-qtmultimedia-plugin | ||
- qtdeclarative5-qtpositioning-plugin | ||
- qtdeclarative5-ubuntu-content1 | ||
- qt5-default | ||
- qtbase5-dev | ||
- qtdeclarative5-dev | ||
- qtdeclarative5-dev-tools | ||
- qtdeclarative5-folderlistmodel-plugin | ||
- qtdeclarative5-ubuntu-ui-toolkit-plugin | ||
- xvfb | ||
|
||
apps: | ||
neuronify: | ||
command: bin/neuronify.sh | ||
plugs: [unity7, opengl] | ||
|
||
parts: | ||
neuronify-launcher: | ||
plugin: copy | ||
files: {neuronify.sh: bin/neuronify.sh} | ||
source: . | ||
neuronify: | ||
plugin: qmake | ||
projectfile: neuronify.pro | ||
source: . | ||
stage-packages: | ||
- ubuntu-sdk-libs | ||
- qtubuntu-desktop | ||
- qml-module-qtsysteminfo | ||
- xkb-data |