Skip to content

python apps: added symbolic links with avtranscoder version #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions app/avInfo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,3 @@ install(
DESTINATION "bin/"
OPTIONAL
)

install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/avinfo.man
RENAME "avinfo.1"
DESTINATION "share/man/man1/"
)
11 changes: 0 additions & 11 deletions app/avInfo/avinfo.man

This file was deleted.

6 changes: 0 additions & 6 deletions app/avMeta/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,3 @@ install(
DESTINATION "bin/"
OPTIONAL
)

install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/avmeta.man
RENAME "avmeta.1"
DESTINATION "share/man/man1/"
)
19 changes: 0 additions & 19 deletions app/avMeta/avmeta.man

This file was deleted.

6 changes: 0 additions & 6 deletions app/avPlay/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,3 @@ install(
DESTINATION "bin/"
OPTIONAL
)

install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/avplay.man
RENAME avplay.1
DESTINATION "share/man/man1/"
)
11 changes: 0 additions & 11 deletions app/avPlay/avplay.man

This file was deleted.

6 changes: 0 additions & 6 deletions app/avProcessor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,3 @@ install(
DESTINATION "bin/"
OPTIONAL
)

install(
FILES ${CMAKE_CURRENT_SOURCE_DIR}/avprocessor.man
RENAME avprocessor.1
DESTINATION "share/man/man1/"
)
13 changes: 0 additions & 13 deletions app/avProcessor/avprocessor.man

This file was deleted.

5 changes: 4 additions & 1 deletion app/pyConcat/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### python/pyConcat
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
include(AvTranscoderMacros)

# Install app
install(
Expand All @@ -8,5 +10,6 @@ install(
)

if(UNIX)
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyconcat.py ${CMAKE_INSTALL_PREFIX}/bin/pyconcat)" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyconcat.py ${CMAKE_INSTALL_PREFIX}/bin/pyconcat-${AVTRANSCODER_VERSION})" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf pyconcat-${AVTRANSCODER_VERSION} ${CMAKE_INSTALL_PREFIX}/bin/pyconcat)" )
endif(UNIX)
5 changes: 4 additions & 1 deletion app/pyProcessor/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### python/pyProcessor
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
include(AvTranscoderMacros)

# Install app
install(
Expand All @@ -8,5 +10,6 @@ install(
)

if(UNIX)
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyprocessor.py ${CMAKE_INSTALL_PREFIX}/bin/pyprocessor)" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyprocessor.py ${CMAKE_INSTALL_PREFIX}/bin/pyprocessor-${AVTRANSCODER_VERSION})" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf pyprocessor-${AVTRANSCODER_VERSION} ${CMAKE_INSTALL_PREFIX}/bin/pyprocessor)" )
endif(UNIX)
5 changes: 4 additions & 1 deletion app/pyRewrap/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### python/pyRewrap
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
include(AvTranscoderMacros)

# Install app
install(
Expand All @@ -8,5 +10,6 @@ install(
)

if(UNIX)
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyrewrap.py ${CMAKE_INSTALL_PREFIX}/bin/pyrewrap)" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pyrewrap.py ${CMAKE_INSTALL_PREFIX}/bin/pyrewrap-${AVTRANSCODER_VERSION})" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf pyrewrap-${AVTRANSCODER_VERSION} ${CMAKE_INSTALL_PREFIX}/bin/pyrewrap)" )
endif(UNIX)
5 changes: 4 additions & 1 deletion app/pyThumbnail/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
### python/pyThumbnail
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
include(AvTranscoderMacros)

# Install app
install(
Expand All @@ -8,5 +10,6 @@ install(
)

if(UNIX)
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pythumbnail.py ${CMAKE_INSTALL_PREFIX}/bin/pythumbnail)" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf python/pythumbnail.py ${CMAKE_INSTALL_PREFIX}/bin/pythumbnail-${AVTRANSCODER_VERSION})" )
install( CODE "EXECUTE_PROCESS(COMMAND ln -sf pythumbnail-${AVTRANSCODER_VERSION} ${CMAKE_INSTALL_PREFIX}/bin/pythumbnail)" )
endif(UNIX)