18 lines
860 B
Plaintext
18 lines
860 B
Plaintext
# Description: FUSE-based transcoding filesystem from many formats to MP3 or MP4 including video transcoding.
|
|
# URL: https://nschlia.github.io/ffmpegfs/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: asciidoc ffmpeg fuse lame w3m bzip2 libgmp libpcre util-linux xz zlib
|
|
# 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
|
|
|
|
name=ffmpegfs
|
|
version=1.8
|
|
release=1
|
|
source=(https://github.com/nschlia/ffmpegfs/releases/download/v$version/ffmpegfs-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
CONFIG_SHELL=/bin/bash ./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|