csync-git
[mirrors/ArchLinux-Packages.git] / harvies-jukebox-svn / PKGBUILD
CommitLineData
209feeb0
H
1# Contributor: Thomas Mudrunka <harvie@@email..cz>
2# You can also contact me on http://blog.harvie.cz/
3
4pkgname=harvies-jukebox-svn
5pkgver=5
6pkgrel=1
7pkgdesc="Simple PHP application acting as jukebox or music library. This allows you to stream or download your music many ways. Will be checked from SVN to /srv/http/h-jukebox. You will need some http server with PHP and do some settings in .php files. Then you can add symlink to your music collection in this application."
8arch=('any')
9license=('BSD')
10url="http://code.google.com/p/h-jukebox/"
11makedepends=('subversion')
12
13_svntrunk="http://h-jukebox.googlecode.com/svn/trunk/"
14_svnmod="h-jukebox-read-only"
15
16build() {
17 mkdir -p ${pkgdir}/srv/http/h-jukebox
18
19 cd ${srcdir}
20 svn checkout ${_svntrunk} ${_svnmod}
21
22 cp -R ${srcdir}/${_svnmod}/* ${pkgdir}/srv/http/h-jukebox
23 find ${pkgdir} -name .svn -print0 | xargs -0 rm -rf #remove .svn directories
24 chmod -R 655 ${pkgdir}/
25}
This page took 0.151052 seconds and 4 git commands to generate.