1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-26 16:08:07 +00:00

add build instructions at the top of NOTES

This commit is contained in:
Greg Alexander 2016-06-18 14:29:58 -04:00
parent 5c16f8dd31
commit b3ac70ced5

23
NOTES
View File

@ -1,3 +1,26 @@
BUILD INSTRUCTIONS:
To build this, you'll need to remove my key.* settings in ant.properties.
Then follow the steps in the "doit" script:
ndk-build -j8 &&
mv libs/armeabi/scp libs/armeabi/libscp.so &&
mv libs/armeabi/sftp-server libs/armeabi/libsftp-server.so &&
mv libs/armeabi/rsync libs/armeabi/librsync.so &&
mv libs/armeabi/buffersu libs/armeabi/libbuffersu.so &&
ant release
(you can ignore the xxinst step, that just copies the apk to my phone)
The mv steps are very important, because "ant release" will only package
the necessary binaries if they have a .so extension (even though they are
stand alone executables).
DEVELOPMENT JOURNAL:
December 6, 2014.
The idea is to make a proper ssh implementation for Android. Important