more markdown

master
Tobi Sim 2015-03-05 16:24:23 +01:00
parent e3125dacbd
commit cfd227d36b
1 changed files with 6 additions and 7 deletions

View File

@ -10,27 +10,26 @@ this package are needed to build/install the package:
fpm -- to package a a root tree from a temporary directory to a rpm package fpm -- to package a a root tree from a temporary directory to a rpm package
Make Commands: ## Make Commands:
-------------
use these make commands to build/install your app for testing: use these make commands to build/install your app for testing:
## make make-virt `make make-virt`
build your package, and install it on your Sailfish Emulator on localhost:2223, considering your Sailfish-SDK is installed at ~/SailfishOS build your package, and install it on your Sailfish Emulator on localhost:2223, considering your Sailfish-SDK is installed at ~/SailfishOS
## make make-jolla-wifi `make make-jolla-wifi`
build your package, and install it on your jolla phone, considering your development PC is authorized for root ssh login on the phone and it is found in your dns-space as "jolla" build your package, and install it on your jolla phone, considering your development PC is authorized for root ssh login on the phone and it is found in your dns-space as "jolla"
## make make-jolla-usb [jolla_usb_ip=192.168.2.15] `make make-jolla-usb [jolla_usb_ip=192.168.2.15]`
build your package, and install it on your jolla phone, considering your development PC is authorized for root ssh login on the phone, and connected via usb development mode set your jollas ip like above. build your package, and install it on your jolla phone, considering your development PC is authorized for root ssh login on the phone, and connected via usb development mode set your jollas ip like above.
## Adding dependencies: ## Adding dependencies:
a basic set of dependencies for python3 apps are already added to dependencies.txt, but you can still add other ones to the list. a basic set of dependencies for python3 apps are already added to dependencies.txt, but you can still add other ones to the list.
## Adding python Modules: Adding python Modules:
all python Modules in pyPackages are included in the package. all python Modules in pyPackages are included in the package.
for now, i like to package both an armv7l and a x86 version and select the package version within the qml code. Packages are built with "noarch", so they should run an any device. I had success using pip wheel to build these packages directly on the jolla phone/sailfish emulator and unpacking them to pyPackages. As an example, the is pillow (Python Imaging Library) included in the package. for now, i like to package both an armv7l and a x86 version and select the package version within the qml code. Packages are built with "noarch", so they should run an any device. I had success using pip wheel to build these packages directly on the jolla phone/sailfish emulator and unpacking them to pyPackages. As an example, the is pillow (Python Imaging Library) included in the package.
## Renaming your App: ## Renaming your App:
./renamep.py "my-new-appname" `/renamep.py "my-new-appname"`