forked from MaurycyLiebner/enve
-
Notifications
You must be signed in to change notification settings - Fork 15
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
67 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM archlinux:base-devel | ||
|
||
RUN pacman --noconfirm -Syu clang git curl libtool autoconf automake cmake python ninja fontconfig freetype2 ffmpeg qscintilla-qt5 qt5-base qt5-imageformats qt5-multimedia qt5-svg qt5-tools qt5-wayland qt5-declarative libunwind | ||
|
||
COPY build_docker.sh / | ||
COPY PKGBUILD / | ||
CMD [ "bash", "./build_docker.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
pkgname=friction | ||
pkgver=__VERSION__ | ||
pkgrel=1 | ||
pkgdesc="Friction Motion Graphics" | ||
arch=('x86_64') | ||
url="https://friction.graphics" | ||
license=('GPL3') | ||
depends=('fontconfig' | ||
'ffmpeg' | ||
'qscintilla-qt5' | ||
'qt5-base' | ||
'qt5-imageformats' | ||
'qt5-multimedia' | ||
'qt5-svg' | ||
'qt5-declarative' | ||
'libunwind') | ||
|
||
package() { | ||
mkdir $pkgdir/usr | ||
cp -a $srcdir/../friction-__VERSION__-Linux/* $pkgdir/usr/ | ||
} |
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