ampache: fix distfiles; change install location.

- All deps are now shipped with zip archive.
- Use the standard - usr/share/webapps - as install location.
This commit is contained in:
Steve Prybylski 2016-02-08 02:20:28 -05:00
parent 646de06122
commit b5ab3c4c86
1 changed files with 9 additions and 7 deletions

View File

@ -1,21 +1,23 @@
# Template file for 'ampache'
pkgname=ampache
version=3.8.2
revision=1
revision=2
noarch=yes
build_style=fetch
hostmakedepends="unzip"
depends="php mysql"
short_desc="Web-based tool for managing your audio/video files"
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
license="AGPL-3"
homepage="http://ampache.org"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
checksum=920509ed018695ac4698fc257b27a30eebb34e4199da2436954c6a30ba378fb9
distfiles="https://github.com/${pkgname}/${pkgname}/releases/download/${version}/${pkgname}-${version}_all.zip"
checksum=b54a4f08248c4389e98ce3f680da0bbc1c19e388e379e6920dc601947acaa3e2
do_install() {
tar -zxvf ${pkgname}-${version}.tar.gz
vmkdir srv/httpd/
vcopy ${pkgname}-${version} srv/httpd/ampache
local dest=usr/share/webapps/${pkgname}
vinstall ${FILESDIR}/nginx-example.conf 644 usr/share/doc/${pkgname}/
vmkdir $dest
unzip ${pkgname}-${version}_all.zip -d ${DESTDIR}/$dest
vinstall ${FILESDIR}/nginx-example.conf 644 usr/share/doc/${pkgname}
}