dependencies
parent
5f08a5d453
commit
145417c0d7
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ prefix:=/usr
|
|||
temp:=/tmp/fpm
|
||||
builddir:=./build
|
||||
sdkpath:=$(HOME)/SailfishOS
|
||||
dependencies:=-d libsailfishapp-launcher -d python3-base -d pyotherside-qml-plugin-python3-qt5
|
||||
dependencies=$(shell for file in `cat dependencies.txt`;do echo "-d "$${file};done;)
|
||||
arch:=noarch
|
||||
rpmname:=$(Appname)-$(arch).rpm
|
||||
jolla_usb_ip:=192.168.2.15
|
||||
|
|
2
README
2
README
|
@ -21,7 +21,7 @@ build your package, and install it on your jolla phone, considering your develop
|
|||
|
||||
|
||||
Adding dependencies:
|
||||
a basic set of dependencies are already added to the Makefile, 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:
|
||||
all python Modules in pyPackages are included in the package.
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
libsailfishapp-launcher
|
||||
python3-base
|
||||
pyotherside-qml-plugin-python3-qt5
|
Loading…
Reference in New Issue