dependencies

master
Tobi Sim 2015-02-21 16:53:25 +01:00
parent 5f08a5d453
commit 145417c0d7
3 changed files with 5 additions and 2 deletions

View File

@ -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
View File

@ -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.

3
dependencies.txt 100644
View File

@ -0,0 +1,3 @@
libsailfishapp-launcher
python3-base
pyotherside-qml-plugin-python3-qt5