Skip to content

Commit

Permalink
Adding distribution via ppa
Browse files Browse the repository at this point in the history
  • Loading branch information
tartavull committed Sep 22, 2014
1 parent b9597d9 commit 24a8dd9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ INotebook
=========

IPython Notebook File Viewer

sudo add-apt-repository ppa:tartavull/ppa
sudo apt-get update
sudo apt-get install inotebook

Binary file modified dist/debinstall/inotebook.deb
Binary file not shown.
5 changes: 3 additions & 2 deletions dist/debinstall/redeb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ mkdir -p ${SYSROOT}/opt/
rsync -a ~/INotebook/dist/INotebook/linux64/ ${SYSROOT}/opt/inotebook/ --delete

find ${SRC}/ -type d -exec chmod 0755 {} \;
find ${SRC}/ -type f -exec chmod go-w {} \;
find ${SRC}/ -type f -exec chmod 0644 {} \;
chmod ${SYSROOT}/opt/inotebook/INotebook -exec chmod 0755 {} \;
chown -R root:root ${SRC}/

let SIZE=`du -s ${SYSROOT} | sed s'/\s\+.*//'`+8
Expand All @@ -36,7 +37,7 @@ pushd ${DIST}/
echo 2.0 > ./debian-binary

find ${DIST}/ -type d -exec chmod 0755 {} \;
find ${DIST}/ -type f -exec chmod go-w {} \;
find ${DIST}/ -type f -exec chmod 0644 {} \;
chown -R root:root ${DIST}/
ar r ${DIST}/inotebook.deb debian-binary control.tar.gz data.tar.gz
popd
Expand Down

0 comments on commit 24a8dd9

Please sign in to comment.