ngx_http_enhance_mp4_module/PKGBUILD

40 lines
1021 B
Bash

# Maintainer: Your New SJW Waifu <sjw@i.gotabig.wang>
# Contributor: Your New SJW Waifu <sjw@i.gotabig.wang>
ngx_ver=1.18.0
pkgname=nginx-mod-enhance-mp4-git
pkgver=1.0
pkgrel=1
pkgdesc='Places moov atom at beginning of mp4 file on-the-fly to improve streaming performance'
arch=('i686' 'x86_64')
depends=('nginx')
makedepends=('git')
url="https://git.mentality.rip/sjw/ngx_http_enhance_mp4_module"
license=('custom')
source=(${pkgname}::git+https://git.mentality.rip/sjw/ngx_http_enhance_mp4_module.git
http://nginx.org/download/nginx-${ngx_ver}.tar.gz
)
prepare() {
cp -r /usr/src/nginx .
}
build() {
cd "${srcdir}/nginx-${_ngx_ver}"
./configure --with-compat --add-dynamic-module="${srcdir}/ngx_http_enhance_mp4_module"
make modules
}
package() {
install -Dm644 "$srcdir/"ngx_http_enhance_mp4_module/LICENSE \
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
cd "$srcdir"/nginx/objs
for mod in *.so; do
install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
done
}