File: qt4_compile_resources.sh

package info (click to toggle)
python-ete3 3.1.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,148 kB
  • sloc: python: 52,375; javascript: 12,959; xml: 4,903; ansic: 69; sql: 65; makefile: 26; sh: 7
file content (11 lines) | stat: -rwxr-xr-x 351 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh 

pyrcc4  ete_resources.qrc -o ete_resources_rc.py
pyuic4 open_newick.ui > _open_newick.py
pyuic4 show_newick.ui > _show_newick.py
pyuic4 search_dialog.ui > _search_dialog.py
pyuic4 ete_qt4app.ui > _mainwindow.py
pyuic4 about.ui > _about.py

# test
python -c 'from ete_dev import Tree; Tree("(A,B,C,(D,E)F,(G,(H,I)J)K);", format=1).show();'