mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add sfml package (#11522)
Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com>
This commit is contained in:
committed by
GitHub
parent
158bb06040
commit
55d2c81759
36
packages/sfml.rb
Normal file
36
packages/sfml.rb
Normal file
@@ -0,0 +1,36 @@
|
||||
require 'buildsystems/cmake'
|
||||
|
||||
class Sfml < CMake
|
||||
description 'SFML is a simple, fast, cross-platform and object-oriented multimedia API.'
|
||||
homepage 'https://www.sfml-dev.org/'
|
||||
version '3.0.0'
|
||||
license 'zlib'
|
||||
compatibility 'aarch64 armv7l x86_64'
|
||||
source_url 'https://github.com/SFML/SFML.git'
|
||||
git_hashtag version
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '172e599bdf688d88a8e127c0c420699e560a8f728af4a422cf1452458f172103',
|
||||
armv7l: '172e599bdf688d88a8e127c0c420699e560a8f728af4a422cf1452458f172103',
|
||||
x86_64: '44aaaab7168a8c1cf62d317f1a9760e6e0a2d76edf0e9be337b178b239b421fa'
|
||||
})
|
||||
|
||||
depends_on 'eudev' # R
|
||||
depends_on 'flac'
|
||||
depends_on 'freetype'
|
||||
depends_on 'gcc_lib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'libglvnd'
|
||||
depends_on 'libogg' # R
|
||||
depends_on 'libvorbis'
|
||||
depends_on 'libx11'
|
||||
depends_on 'libxcursor'
|
||||
depends_on 'libxext' # R
|
||||
depends_on 'libxfixes' # R
|
||||
depends_on 'libxi'
|
||||
depends_on 'libxrandr'
|
||||
depends_on 'libxrender' # R
|
||||
|
||||
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
||||
end
|
||||
Reference in New Issue
Block a user