From 6e99b51542d59cdd9b96fe333506fd88d989c3b1 Mon Sep 17 00:00:00 2001 From: idriskalp Date: Sun, 12 Jan 2020 01:52:30 +0300 Subject: [PATCH] libgme add to repo --- multimedia/sound/libgme/actions.py | 29 ++++++++++++++++ multimedia/sound/libgme/pspec.xml | 54 ++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100755 multimedia/sound/libgme/actions.py create mode 100755 multimedia/sound/libgme/pspec.xml diff --git a/multimedia/sound/libgme/actions.py b/multimedia/sound/libgme/actions.py new file mode 100755 index 0000000000..e1dc9cf282 --- /dev/null +++ b/multimedia/sound/libgme/actions.py @@ -0,0 +1,29 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +def setup(): + shelltools.system("mkdir build_") + shelltools.cd("build_") + + shelltools.system("cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_LIBDIR=lib") + +def build(): + shelltools.cd("build_") + cmaketools.make() + +def install(): + shelltools.cd("build_") + autotools.rawInstall("DESTDIR=%s" %get.installDIR()) + + shelltools.cd("..") + pisitools.dodoc("changes.txt", "design.txt", "gme.txt", "license*", "readme.txt") + diff --git a/multimedia/sound/libgme/pspec.xml b/multimedia/sound/libgme/pspec.xml new file mode 100755 index 0000000000..8c7bd6a570 --- /dev/null +++ b/multimedia/sound/libgme/pspec.xml @@ -0,0 +1,54 @@ + + + + + libgme + https://bitbucket.org/mpyne/game-music-emu/wiki/Home + + Mathias Freire + mathiasfreire45@gmail.com + + LGPL + library + Video game music file emulation/playback library + game-music-emu is a collection of audio emulators for assorted video game console hardware. It was originally developed by Blargg and used as the basis for several other software products before being converted into a library. + https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-0.6.2.tar.xz + + + + libgme + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + libgme-devel + Header files for libgme. + + libgme + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2020-01-12 + 0.6.2 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + +