forked from MaurycyLiebner/enve
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
51 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
# VFX Reference Platform | ||
# VFX Reference Platform for Friction | ||
FROM centos:centos7.9.2009 | ||
|
||
RUN yum -y update | ||
RUN yum -y install centos-release-scl | ||
RUN yum -y group install "Development Tools" | ||
RUN yum -y install pulseaudio-libs-devel wget git yasm python3 fontconfig-devel zlib-devel autoconf automake xz devtoolset-7 llvm-toolset-7.0 tree curl libICE-devel libSM-devel libX11-devel libXau-devel libXdamage-devel libXext-devel libXfixes-devel libXi-devel libXxf86vm-devel libdrm-devel libxcb-devel mesa-libGL-devel xorg-x11-proto-devel | ||
RUN yum -y install epel-release | ||
RUN yum -y install fakeroot dpkg dpkg-dev rpmdevtools | ||
RUN ln -sf /usr/bin/python3 /usr/bin/python | ||
RUN rm -f /usr/lib64/pkgconfig/libpng.pc | ||
RUN rm -f /usr/lib64/pkgconfig/libpng15.pc | ||
RUN rm -f /usr/include/png.h | ||
RUN rm -f /usr/include/pngconf.h | ||
RUN rm -f /usr/include/pnglibconf.h | ||
RUN echo "source scl_source enable devtoolset-7" >> /root/.bashrc | ||
|
||
# WIP | ||
# COPY build_vfx.sh / | ||
# CMD [ "bash", "./build_vfx.sh" ] | ||
# COPY build_vfxplatform*.sh / | ||
# COPY vfxplatform.spec / | ||
# CMD [ "bash", "./build_vfxplatform.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Name: friction | ||
Version: __FRICTION_VERSION__ | ||
Release: 1 | ||
Summary: Friction Motion Graphics | ||
Group: System Environment/Base | ||
License: GPL3 | ||
Source0: friction-%{version}.tar | ||
|
||
AutoReq: no | ||
%global debug_package %{nil} | ||
|
||
%description | ||
Friction is an open-source, vector-based application designed for creating web animations and videos. | ||
|
||
%prep | ||
%setup -q #unpack tarball | ||
|
||
%build | ||
|
||
%install | ||
|
||
cp -rfa opt %{buildroot}/ | ||
cp -rfa usr %{buildroot}/ | ||
rm -rf %{buildroot}/opt/friction/share/doc | ||
|
||
%files | ||
%defattr(-,root,root,-) | ||
/opt/friction | ||
/usr/bin/friction | ||
/usr/share/applications/friction.desktop | ||
/usr/share/mime/packages/friction.xml | ||
/usr/share/icons/hicolor | ||
|
||
%changelog | ||
|