21 lines
709 B
Bash
21 lines
709 B
Bash
# Template file for 'ampache'
|
|
pkgname=ampache
|
|
version=3.8.9
|
|
revision=1
|
|
noarch=yes
|
|
create_wrksrc=yes
|
|
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.0-or-later"
|
|
homepage="http://ampache.org"
|
|
distfiles="https://github.com/ampache/ampache/releases/download/${version}/${pkgname}-${version}_all.zip"
|
|
checksum=44fb9a839d048727aafeb98238dba06a5e92518cdd3ec4e413e8985add2b56be
|
|
|
|
do_install() {
|
|
vmkdir usr/share/webapps/${pkgname}
|
|
cp -rT ${wrksrc} ${DESTDIR}/usr/share/webapps/${pkgname}
|
|
vlicense docs/AGPL-LICENSE
|
|
vinstall ${FILESDIR}/nginx-example.conf 644 usr/share/doc/${pkgname}
|
|
}
|