blob: 682cccf90a35f6ff696a7aea69cfab25eb17896d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
omniidl -bpython ../../yalp.idl
edje_cc yalp_gui.edc
rm -Rf tmp
mkdir -p tmp/etc
cp etc/* tmp/etc/
mkdir -p tmp/usr/bin
cp bin/* tmp/usr/bin/
mkdir -p tmp/root/EflClient
cp *.py tmp/root/EflClient/
cp *.edj tmp/root/EflClient/
cp -a YalpInterfaces* tmp/root/EflClient/
mkdir -p tmp/usr/share/applications
cp eYalp.desktop tmp/usr/share/applications/
cd tmp
tar czf ../eYalp.tar.gz .
|