ffmpegfs: initial import

This commit is contained in:
Danny Rawlins 2019-06-26 22:39:25 +10:00
parent 8680ab9e17
commit 0f24e3880e
3 changed files with 29 additions and 0 deletions

7
ffmpegfs/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ffmpegfs
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/ffmpegfs.1.gz

5
ffmpegfs/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zSf8DHMYXUJOjbbuuMIdKhbs7XW1dKwxPd1VpngjyLK7XZbJxZTzQHzDwsjUQiOhg/Q1xdolRk3wJN3LCA5rAU=
SHA256 (Pkgfile) = 850897d20af482d6efb099980c488ba5ea3dc6f983d520bc63be24d252d052cc
SHA256 (.footprint) = 60f1c3afd1a1616299dcd8f24debde6235e9cfcefbcb85ee885d7fafb28ff85c
SHA256 (ffmpegfs-1.8.tar.gz) = c0b65982da7bb8283bca1dd0a0705c71e3c67284a8d91d105dd54208ec0b90bc

17
ffmpegfs/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# 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
}