Changeset View
Changeset View
Standalone View
Standalone View
package.yml
| name : mame | name : mame | ||||
| version : '0.204' | version : '0.206' | ||||
| release : 7 | release : 8 | ||||
| source : | source : | ||||
| - https://github.com/mamedev/mame/archive/mame0204.tar.gz : eeb6e304502dc1f1ce5a9c73d59a32865fc6e374c14ecef85d85b6de98a76e42 | - https://github.com/mamedev/mame/archive/mame0206.tar.gz : 588ba357361cc49fdc2754d8343c8b91f6b965b30220a998cbb1da09e49dcbdd | ||||
| license : | license : | ||||
| - GPL-2.0-or-later | |||||
| - BSD-3-Clause | - BSD-3-Clause | ||||
| - CC0-1.0 # Localization files and other things | |||||
| - GPL-2.0-or-later | |||||
| - MIT # 'console' and 'json' plugins | - MIT # 'console' and 'json' plugins | ||||
| - WTFPL # 'hiscore' plugin | - WTFPL # 'hiscore' plugin | ||||
| - CC0-1.0 # Localization files and other things | |||||
| component : games.emulator | component : games.emulator | ||||
| summary : Emulator for several hardware platforms to keep old games playable | summary : Emulator for several hardware platforms to keep old games playable | ||||
| description: | | description: | | ||||
| MAME's purpose is to preserve decades of software history. As electronic technology continues to rush forward, MAME prevents this important "vintage" software from being lost and forgotten. This is achieved by documenting the hardware and how it functions. The source code to MAME serves as this documentation. The fact that the software is usable serves primarily to validate the accuracy of the documentation (how else can you prove that you have recreated the hardware faithfully?). | MAME's purpose is to preserve decades of software history. As electronic technology continues to rush forward, MAME prevents this important "vintage" software from being lost and forgotten. This is achieved by documenting the hardware and how it functions. The source code to MAME serves as this documentation. The fact that the software is usable serves primarily to validate the accuracy of the documentation (how else can you prove that you have recreated the hardware faithfully?). | ||||
| Over time, MAME absorbed the sister-project MESS (Multi Emulator Super System), so MAME now documents a wide variety of (mostly vintage) computers, video game consoles and calculators, in addition to the arcade video games that were its initial focus. | Over time, MAME absorbed the sister-project MESS (Multi Emulator Super System), so MAME now documents a wide variety of (mostly vintage) computers, video game consoles and calculators, in addition to the arcade video games that were its initial focus. | ||||
| builddeps : | builddeps : | ||||
| - pkgconfig(alsa) | - pkgconfig(alsa) | ||||
| - pkgconfig(flac) | - pkgconfig(flac) | ||||
| - pkgconfig(fontconfig) | - pkgconfig(fontconfig) | ||||
| - pkgconfig(glm) | |||||
| - pkgconfig(libjpeg) | - pkgconfig(libjpeg) | ||||
| - pkgconfig(lua) | - pkgconfig(lua) | ||||
| - pkgconfig(portaudiocpp) | - pkgconfig(portaudiocpp) | ||||
| - pkgconfig(Qt5Gui) | - pkgconfig(Qt5Gui) | ||||
| - pkgconfig(RapidJSON) | - pkgconfig(RapidJSON) | ||||
| - pkgconfig(SDL2_ttf) | - pkgconfig(SDL2_ttf) | ||||
| - pkgconfig(sqlite3) | - pkgconfig(sqlite3) | ||||
| - pkgconfig(xinerama) | - pkgconfig(xinerama) | ||||
| - glm | |||||
| - portmidi-devel | - portmidi-devel | ||||
| - pugixml-devel | - pugixml-devel | ||||
| rundeps : | rundeps : | ||||
| - python3 | - python3 | ||||
| build : | | build : | | ||||
| # -g2 flag is removed because it's bloating mame64 executable file | # -g2 flag is removed because it's bloating mame64 executable file | ||||
| # AFAIK every 64-bit processor supports SSE2, so I'm enabling it | # AFAIK every 64-bit processor supports SSE2, so I'm enabling it | ||||
| # Using bundled asio and utf8proc libraries because they're not in Solus repository | # Using bundled utf8proc library because it's not in Solus repository | ||||
| export CFLAGS="${CFLAGS/-g2/}" | export CFLAGS="${CFLAGS/-g2/}" | ||||
| export CXXFLAGS="${CXXFLAGS/-g2/}" | export CXXFLAGS="${CXXFLAGS/-g2/}" | ||||
| %make NOWERROR=1 \ | %make NOWERROR=1 \ | ||||
| OPTIMIZE=2 \ | OPTIMIZE=2 \ | ||||
| PYTHON_EXECUTABLE=python3 \ | PYTHON_EXECUTABLE=python3 \ | ||||
| REGENIE=1 \ | REGENIE=1 \ | ||||
| SSE2=1 \ | SSE2=1 \ | ||||
| TOOLS=0 \ | TOOLS=0 \ | ||||
| USE_SYSTEM_LIB_EXPAT=1 \ | USE_SYSTEM_LIB_EXPAT=1 \ | ||||
| USE_SYSTEM_LIB_FLAC=1 \ | USE_SYSTEM_LIB_FLAC=1 \ | ||||
| USE_SYSTEM_LIB_GLM=1 \ | USE_SYSTEM_LIB_GLM=1 \ | ||||
| USE_SYSTEM_LIB_JPEG=1 \ | USE_SYSTEM_LIB_JPEG=1 \ | ||||
| USE_SYSTEM_LIB_LUA=1 \ | USE_SYSTEM_LIB_LUA=1 \ | ||||
| USE_SYSTEM_LIB_PORTAUDIO=1 \ | USE_SYSTEM_LIB_PORTAUDIO=1 \ | ||||
| USE_SYSTEM_LIB_PORTMIDI=1 \ | USE_SYSTEM_LIB_PORTMIDI=1 \ | ||||
| USE_SYSTEM_LIB_PUGIXML=1 \ | USE_SYSTEM_LIB_PUGIXML=1 \ | ||||
| USE_SYSTEM_LIB_RAPIDJSON=1 \ | USE_SYSTEM_LIB_RAPIDJSON=1 \ | ||||
| USE_SYSTEM_LIB_SQLITE3=1 \ | USE_SYSTEM_LIB_SQLITE3=1 \ | ||||
| USE_SYSTEM_LIB_ZLIB=1 | USE_SYSTEM_LIB_ZLIB=1 | ||||
| install : | | install : | | ||||
| # Install executable files with proper filenames | # Install executable files with proper filenames | ||||
| install -Dm00755 ./mame64 $installdir/usr/share/mame/mame | install -Dm00755 ./mame64 $installdir/usr/share/mame/mame | ||||
| install -Dm00755 $pkgfiles/mame $installdir/usr/bin/mame | install -Dm00755 $pkgfiles/mame $installdir/usr/bin/mame | ||||
| # File cleanup | # File cleanup | ||||
| find . -name dir.txt -o \ | find . -name dir.txt -o \ | ||||
| -name "LICENSE*" -o \ | -name "LICENSE*" -o \ | ||||
| Show All 17 Lines | |||||
Copyright © 2015-2021 Solus Project. The Solus logo is Copyright © 2016-2021 Solus Project. All Rights Reserved.