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:
parent
646de06122
commit
b5ab3c4c86
|
@ -1,21 +1,23 @@
|
||||||
# Template file for 'ampache'
|
# Template file for 'ampache'
|
||||||
pkgname=ampache
|
pkgname=ampache
|
||||||
version=3.8.2
|
version=3.8.2
|
||||||
revision=1
|
revision=2
|
||||||
noarch=yes
|
noarch=yes
|
||||||
build_style=fetch
|
build_style=fetch
|
||||||
|
hostmakedepends="unzip"
|
||||||
depends="php mysql"
|
depends="php mysql"
|
||||||
short_desc="Web-based tool for managing your audio/video files"
|
short_desc="Web-based tool for managing your audio/video files"
|
||||||
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
||||||
license="AGPL-3"
|
license="AGPL-3"
|
||||||
homepage="http://ampache.org"
|
homepage="http://ampache.org"
|
||||||
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
distfiles="https://github.com/${pkgname}/${pkgname}/releases/download/${version}/${pkgname}-${version}_all.zip"
|
||||||
checksum=920509ed018695ac4698fc257b27a30eebb34e4199da2436954c6a30ba378fb9
|
checksum=b54a4f08248c4389e98ce3f680da0bbc1c19e388e379e6920dc601947acaa3e2
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
tar -zxvf ${pkgname}-${version}.tar.gz
|
local dest=usr/share/webapps/${pkgname}
|
||||||
vmkdir srv/httpd/
|
|
||||||
vcopy ${pkgname}-${version} srv/httpd/ampache
|
|
||||||
|
|
||||||
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}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue