blob: 3284c8aef97c3224e91011af318293b20eba3dac (
plain)
1 # Description: FUSE-based transcoding filesystem from many formats to MP3 or MP4 including video transcoding.
2 # URL: https://nschlia.github.io/ffmpegfs/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: asciidoc ffmpeg fuse lame libchardet libcue libgmp libpcre util-linux w3m
5 # Optional: fdk-aac libass libbluray x264 x265 expat fontconfig freetype fribidi fuse glib gnutls harfbuzz libffi libidn2 libogg libpng libtasn1 libtheora libunistring libva libvorbis libvpx libwebp libxml2 nettle opus p11-kit libdrm libvdpau xorg-libx11 xorg-libxau xorg-libxcb xorg-libxdmcp xorg-libxext xorg-libxfixes
6
7 name=ffmpegfs
8 version=2.6
9 release=1
10 source=(https://github.com/nschlia/ffmpegfs/releases/download/v$version/ffmpegfs-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 CONFIG_SHELL=/bin/bash ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|