rearrange encoder/transcoder/multimedia parts in various containers

This commit is contained in:
2016-12-29 11:07:06 +01:00
parent 2cc7047e7f
commit 9886f5ca2a
16 changed files with 57 additions and 24 deletions

View File

@@ -1,2 +0,0 @@
encoders: compile
$(call script,$@)

View File

@@ -1,2 +1,2 @@
ffmpeg:
$(call script,ffmpeg)
ffmpeg: compile
$(call script,ffmpeg)

2
build/make/handbrake.mk Normal file
View File

@@ -0,0 +1,2 @@
handbrake: multimedia
$(call script,$@)

View File

@@ -1,4 +1,4 @@
headphones: base encoders ffmpeg
headphones: base transcoder ffmpeg
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)
$(call runit,$@)

View File

@@ -1,4 +1,4 @@
kodi: base encoders ffmpeg
kodi: base compile transcoder ffmpeg
$(call aux,headless.patch)
$(call script,$@)
$(call runit,$@)
$(call runit,$@)

2
build/make/multimedia.mk Normal file
View File

@@ -0,0 +1,2 @@
multimedia:
$(call script,$@)

3
build/make/rar.mk Normal file
View File

@@ -0,0 +1,3 @@
rar:
$(call script,utilities)
$(call script,$@)

View File

@@ -1,4 +1,4 @@
sabnzbd: base
sabnzbd: base rar
$(call script,$@)
$(call boot,02,$@)
$(call runit,$@)
$(call runit,$@)

2
build/make/transcoder.mk Normal file
View File

@@ -0,0 +1,2 @@
transcoder: rar handbrake
$(call script,$@)