Skip to content

Commit

Permalink
VLC-Qt 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ntadej committed Oct 14, 2012
1 parent e2e416d commit 41c32a0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Build dependencies:
The latest version of Qt4, libvlc and CMake is prefered.

- g++ >=4, make (http://gcc.gnu.org, http://www.mingw.org)
- cmake >=2.6 (http://www.cmake.org)
- Qt development package >=4.6 (http://qt.nokia.com)
- libvlc-dev >=1.1 (http://www.videolan.org)
- cmake >=2.8.6 (http://www.cmake.org)
- Qt development package >=4.8 (http://qt.nokia.com)
- libvlc-dev >=2.0 (http://www.videolan.org)
- doxygen (www.doxygen.org, optional for documentation)


Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.7.0 (git)
0.7.0 (2012-10-14)
* Re-licensed under GNU Lesser General Public License v3
* Native MSVC support
* Basic QML Video Player
Expand Down
16 changes: 11 additions & 5 deletions build-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,28 @@

set -eu

DEVEL=""
TARGET=""
while getopts "ht:" OPTION
while getopts "hdt:" OPTION
do
case $OPTION in
h)
echo "Quick build system for VLC-Qt library."
echo ""
echo "Use -t to specify target (in targets directory)"
exit 0
;;
echo "Use -d to ignore dependency requests"
exit 0
;;
d)
DEVEL="-d"
;;
t)
TARGET="$OPTARG"
;;
TARGET="$OPTARG"
;;
esac
done


if [[ -z $TARGET ]]; then
echo "Target (-t) not specified"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion targets/debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build()
echo >>${CHANGELOG}
echo >>${CHANGELOG} " -- Tadej Novak <[email protected]> ${NOW}"

dpkg-buildpackage -b -us -uc -d
dpkg-buildpackage -b -us -uc ${DEVEL}

for a in ../libvlc-qt*${VER}*.deb; do
versioned_artifact "$a" deb application/x-deb `basename $a`
Expand Down

0 comments on commit 41c32a0

Please sign in to comment.