1 # Maintainer: LeCrayonVert
5 pkgdesc="WebTV player to watch ADSL TV on the PC with ISPs Free and SFR."
7 url="http://code.google.com/p/freetuxtv/"
9 depends=('vlc' 'gtk2' 'sqlite3' 'curl' 'libnotify')
11 _svntrunk=http://freetuxtv.googlecode.com/svn/trunk/
12 _svnmod=freetuxtv-read-only
16 msg "Connecting to SVN server...."
18 if [[ -d "$_svnmod/.svn" ]]; then
19 (cd "$_svnmod" && svn up -r "$pkgver")
21 svn co "$_svntrunk" --config-dir ./ -r "$pkgver" "$_svnmod"
24 msg "SVN checkout done or server timeout"
25 msg "Starting build..."
27 rm -rf "$srcdir/$_svnmod-build"
28 cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
29 cd "$srcdir/$_svnmod-build"
35 ./configure --prefix=/usr
40 cd "$srcdir/$_svnmod-build"
41 make DESTDIR="$pkgdir/" install
44 # vim:set ts=2 sw=2 et: