Cover plugins in setup.py
This commit is contained in:
parent
996607d656
commit
343811c2f6
|
@ -29,12 +29,11 @@ run-build:
|
||||||
- tar xzf $FN.gz
|
- tar xzf $FN.gz
|
||||||
- rm $FN.gz
|
- rm $FN.gz
|
||||||
- export GF=$(find . -maxdepth 1 -type d -name 'gajim-*')
|
- export GF=$(find . -maxdepth 1 -type d -name 'gajim-*')
|
||||||
- mkdir -p $GF/plugins/
|
- cd $GF/gajim/plugins/
|
||||||
- cd $GF/plugins/
|
|
||||||
- curl -O https://ftp.gajim.org/plugins_1/plugin_installer.zip
|
- curl -O https://ftp.gajim.org/plugins_1/plugin_installer.zip
|
||||||
- unzip plugin_installer.zip
|
- unzip plugin_installer.zip
|
||||||
- rm plugin_installer.zip
|
- rm plugin_installer.zip
|
||||||
- cd ../..
|
- cd ../../..
|
||||||
- tar czf ../$FN.gz gajim-*
|
- tar czf ../$FN.gz gajim-*
|
||||||
- cd ..
|
- cd ..
|
||||||
- rm -rf tmp_add_plugins
|
- rm -rf tmp_add_plugins
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
include COPYING
|
include COPYING
|
||||||
recursive-include po *.po
|
recursive-include po *.po
|
||||||
recursive-include data *.1 *.in
|
recursive-include data *.1 *.in
|
||||||
|
recursive-exclude * *.pyc
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -157,12 +157,14 @@ package_data_gui = ['data/gui/*.ui']
|
||||||
package_data_icons = ['data/icons/hicolor/*/*/*.png']
|
package_data_icons = ['data/icons/hicolor/*/*/*.png']
|
||||||
package_data_iconsets = ['data/iconsets/*/*/*.png']
|
package_data_iconsets = ['data/iconsets/*/*/*.png']
|
||||||
package_data_other = ['data/other/servers.xml']
|
package_data_other = ['data/other/servers.xml']
|
||||||
|
package_data_plugin = ['plugins/*/*']
|
||||||
package_data_style = ['data/style/gajim.css']
|
package_data_style = ['data/style/gajim.css']
|
||||||
package_data = (package_data_emoticons
|
package_data = (package_data_emoticons
|
||||||
+ package_data_gui
|
+ package_data_gui
|
||||||
+ package_data_icons
|
+ package_data_icons
|
||||||
+ package_data_iconsets
|
+ package_data_iconsets
|
||||||
+ package_data_other
|
+ package_data_other
|
||||||
|
+ package_data_plugin
|
||||||
+ package_data_style)
|
+ package_data_style)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue