Changeset View
Changeset View
Standalone View
Standalone View
package.yml
| name : mame | name : mame | ||||
| version : '0.193' | version : '0.196' | ||||
| release : 2 | release : 3 | ||||
| source : | source : | ||||
| - https://github.com/mamedev/mame/archive/mame0193.tar.gz : 6b5e90b602befbcad2b6989b1e930d0ff6e537dc901f7b1615a3e6deec2207a2 | - https://github.com/mamedev/mame/archive/mame0196.tar.gz : fc4436a23d7f2ef0b3c3f600c00745bc468541d0d29bcd3a1e0c599c5c02df7f | ||||
| license : | license : | ||||
| - GPL-2.0 | - GPL-2.0-or-later | ||||
| - BSD-3-Clause | - BSD-3-Clause | ||||
| - MIT # 'console' and 'json' plugins | - MIT # 'console' and 'json' plugins | ||||
| - WTFPL # 'hiscore' plugin | - WTFPL # 'hiscore' plugin | ||||
| - CC0-1.0 # Localization files and other things | - 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 | 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?). | ||||
| forward, MAME prevents this important "vintage" software from being lost and forgotten. This is achieved | 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. | ||||
| 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. | |||||
| builddeps : | builddeps : | ||||
| - pkgconfig(alsa) | - pkgconfig(alsa) | ||||
| - pkgconfig(flac) | - pkgconfig(flac) | ||||
| - pkgconfig(fontconfig) | - pkgconfig(fontconfig) | ||||
| - pkgconfig(gl) | - pkgconfig(gl) | ||||
| - pkgconfig(libjpeg) | - pkgconfig(libjpeg) | ||||
| - pkgconfig(lua) | - pkgconfig(lua) | ||||
| - pkgconfig(portaudiocpp) | - pkgconfig(portaudiocpp) | ||||
| - pkgconfig(Qt5Gui) | - pkgconfig(Qt5Gui) | ||||
| - pkgconfig(RapidJSON) | |||||
| - pkgconfig(SDL2_ttf) | - pkgconfig(SDL2_ttf) | ||||
| - pkgconfig(sqlite3) | - pkgconfig(sqlite3) | ||||
| - pkgconfig(xinerama) | - pkgconfig(xinerama) | ||||
| - glm | |||||
| - portmidi-devel | - portmidi-devel | ||||
| - pugixml-devel | |||||
| build : | | build : | | ||||
| # Remove -g2 flag 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 | ||||
| # TODO: Use system utf8proc when it'll be available in repo | # Using bundled asio and utf8proc libraries because they're not in Solus repository | ||||
| export CFLAGS=$(echo $CFLAGS | sed 's/-g2//') | export CFLAGS=$(echo $CFLAGS | sed 's/-g2//') | ||||
| export CXXFLAGS=$(echo $CXXFLAGS | sed 's/-g2//') | export CXXFLAGS=$(echo $CXXFLAGS | sed 's/-g2//') | ||||
| %make USE_SYSTEM_LIB_ZLIB=1 \ | %make NOWERROR=1 \ | ||||
| USE_SYSTEM_LIB_JPEG=1 \ | OPTIMIZE=2 \ | ||||
| USE_SYSTEM_LIB_FLAC=1 \ | REGENIE=1 \ | ||||
| USE_SYSTEM_LIB_SQLITE3=1 \ | SSE2=1 \ | ||||
| TOOLS=0 \ | |||||
| USE_SYSTEM_LIB_EXPAT=1 \ | USE_SYSTEM_LIB_EXPAT=1 \ | ||||
| USE_SYSTEM_LIB_FLAC=1 \ | |||||
| USE_SYSTEM_LIB_GLM=1 \ | |||||
| USE_SYSTEM_LIB_JPEG=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_LUA=1 \ | USE_SYSTEM_LIB_PUGIXML=1 \ | ||||
| OPTIMIZE=2 \ | USE_SYSTEM_LIB_RAPIDJSON=1 \ | ||||
| TOOLS=0 \ | USE_SYSTEM_LIB_SQLITE3=1 \ | ||||
| SSE2=1 \ | USE_SYSTEM_LIB_ZLIB=1 | ||||
| NOWERROR=1 \ | |||||
| REGENIE=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 23 Lines | |||||
Copyright © 2015-2021 Solus Project. The Solus logo is Copyright © 2016-2021 Solus Project. All Rights Reserved.