~lubuntu-software-center-team/lubuntu-software-center/vala-port

« back to all changes in this revision

Viewing changes to build.sh

  • Committer: Stephen Smally
  • Date: 2012-03-04 12:59:13 UTC
  • Revision ID: eco.stefi@fastwebnet.it-20120304125913-bk1iutifwoeoyo0i
Worked a lot!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
echo "To compile the following packages are needed:"
 
2
echo -e "\t * valac"
 
3
echo -e "\t * libglib2.0-dev"
 
4
 
 
5
VALAC_PKGS="--pkg gio-2.0 --pkg packagekit-glib2 --pkg gtk+-3.0"
 
6
VALAC_FLAGS=""
 
7
BIN="light-software-center"
 
8
FILES=$(find src/ | grep .vala)
 
9
 
 
10
echo "Building $BIN"
 
11
valac $VALAC_PKGS $VALAC_FLAGS $FILES -o $BIN &&
 
12
echo "Build compiled, lanching..." &&
 
13
./$BIN