2022-09-23 16:47:02 +00:00
|
|
|
# Maintainer: Xavier (sapphirus at azorium dot net)
|
2024-02-19 20:46:47 +00:00
|
|
|
# Contributor: Mikael Eriksson <mikael_eriksson@miffe.org>
|
2023-02-18 12:08:58 +00:00
|
|
|
|
2022-09-24 02:12:18 +00:00
|
|
|
_pkgbase=ocp
|
2023-02-18 11:56:57 +00:00
|
|
|
pkgname=('ocp' 'ocp-sdl2')
|
2024-04-04 21:30:17 +00:00
|
|
|
pkgver=0.2.109
|
|
|
|
pkgrel=1
|
2023-02-18 12:13:02 +00:00
|
|
|
pkgdesc="Open Cubic Player"
|
2015-06-08 13:54:40 +00:00
|
|
|
arch=('i686' 'x86_64')
|
2022-09-23 16:47:02 +00:00
|
|
|
url="https://stian.cubic.org/project-ocp.php"
|
2015-06-08 13:54:40 +00:00
|
|
|
license=('GPL')
|
2023-02-18 11:56:57 +00:00
|
|
|
|
2023-05-12 00:16:39 +00:00
|
|
|
source=(${_pkgbase}::git+https://github.com/mywave82/opencubicplayer.git#tag=v${pkgver})
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
2023-02-18 11:56:57 +00:00
|
|
|
optdepends=('libvorbis: Vorbis codec support'
|
|
|
|
'libmad: MPEG codec support'
|
2023-07-31 14:48:17 +00:00
|
|
|
'flac: FLAC codec support'
|
|
|
|
'libgme: Video game music emulation/playback support')
|
2022-09-23 16:47:02 +00:00
|
|
|
|
2023-02-18 13:34:24 +00:00
|
|
|
makedepends=('alsa-lib'
|
2023-02-18 13:28:49 +00:00
|
|
|
'cjson'
|
2023-02-18 11:56:57 +00:00
|
|
|
'desktop-file-utils'
|
2023-02-18 13:28:49 +00:00
|
|
|
'freetype2'
|
2023-02-18 11:56:57 +00:00
|
|
|
'flac'
|
2023-02-18 13:28:49 +00:00
|
|
|
'git'
|
|
|
|
'ncurses'
|
|
|
|
'sdl2'
|
|
|
|
'xa'
|
2023-07-31 14:48:17 +00:00
|
|
|
'libgme'
|
2023-02-18 11:56:57 +00:00
|
|
|
'libancient'
|
|
|
|
'libdiscid'
|
|
|
|
'libmad'
|
|
|
|
'libjpeg-turbo'
|
|
|
|
'libpng'
|
2023-02-20 10:59:48 +00:00
|
|
|
'libvorbis')
|
2022-09-23 16:47:02 +00:00
|
|
|
|
2020-02-05 18:53:22 +00:00
|
|
|
prepare() {
|
2024-02-19 21:16:41 +00:00
|
|
|
cd $_pkgbase
|
2020-02-05 18:53:22 +00:00
|
|
|
git submodule init
|
2023-02-18 11:56:57 +00:00
|
|
|
git submodule update --init --recursive
|
2020-02-05 18:53:22 +00:00
|
|
|
}
|
2015-06-08 13:54:40 +00:00
|
|
|
|
|
|
|
build() {
|
2022-09-24 02:12:18 +00:00
|
|
|
cd $_pkgbase
|
2023-02-20 10:59:48 +00:00
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core cross_compiling=yes\
|
2023-02-18 11:56:57 +00:00
|
|
|
--without-update-desktop-database\
|
|
|
|
--without-update-mime-database\
|
|
|
|
--with-unifont-ttf=/usr/share/fonts/Unifont/Unifont.ttf\
|
|
|
|
--with-unifont-csur-ttf=/usr/share/fonts/Unifont/Unifont_CSUR.ttf\
|
|
|
|
--with-unifont-upper-ttf=/usr/share/fonts/Unifont/Unifont_Upper.ttf
|
2023-02-20 10:59:48 +00:00
|
|
|
make DESTDIR="$pkgdir" subdirs ocp ocp.hlp
|
2023-02-18 11:56:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_ocp-sdl2() {
|
2023-02-20 10:59:48 +00:00
|
|
|
provides=(${_pkgbase}=${pkgver}
|
|
|
|
${_pkgbase}-sdl2=${pkgver})
|
|
|
|
conflicts=('ocp' 'ocp-sdl2' 'ocp-curses')
|
2023-02-18 11:56:57 +00:00
|
|
|
install=${_pkgbase}.install
|
|
|
|
depends=('alsa-lib'
|
2023-02-19 10:11:17 +00:00
|
|
|
'bzip2'
|
2023-02-18 11:56:57 +00:00
|
|
|
'cjson'
|
|
|
|
'freetype2'
|
|
|
|
'hicolor-icon-theme'
|
2023-02-18 13:28:49 +00:00
|
|
|
'ncurses'
|
2023-02-18 11:56:57 +00:00
|
|
|
'sdl2'
|
|
|
|
'shared-mime-info'
|
2023-02-18 16:15:40 +00:00
|
|
|
'zlib'
|
|
|
|
'libancient'
|
2023-02-18 11:56:57 +00:00
|
|
|
'libdiscid'
|
|
|
|
'libjpeg-turbo'
|
2023-02-18 13:28:49 +00:00
|
|
|
'libpng'
|
|
|
|
'ttf-unifont')
|
2023-02-18 11:56:57 +00:00
|
|
|
cd $_pkgbase
|
2023-02-20 10:59:48 +00:00
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core cross_compiling=yes\
|
2023-02-22 07:20:17 +00:00
|
|
|
--without-sdl --without-x11\
|
2023-02-20 13:20:23 +00:00
|
|
|
--without-update-desktop-database\
|
2023-02-18 11:56:57 +00:00
|
|
|
--without-update-mime-database\
|
|
|
|
--with-unifont-ttf=/usr/share/fonts/Unifont/Unifont.ttf\
|
|
|
|
--with-unifont-csur-ttf=/usr/share/fonts/Unifont/Unifont_CSUR.ttf\
|
|
|
|
--with-unifont-upper-ttf=/usr/share/fonts/Unifont/Unifont_Upper.ttf
|
|
|
|
make DESTDIR="$pkgdir" libocp.so
|
|
|
|
make DESTDIR="$pkgdir" install
|
2015-06-08 13:54:40 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 11:56:57 +00:00
|
|
|
package_ocp() {
|
|
|
|
provides=(${_pkgbase}=${pkgver}
|
|
|
|
${_pkgbase}-curses=${pkgver})
|
|
|
|
conflicts=('ocp-curses' 'ocp-sdl2')
|
2023-02-20 10:59:48 +00:00
|
|
|
depends=('alsa-lib'
|
|
|
|
'bzip2'
|
|
|
|
'cjson'
|
2023-02-18 13:28:49 +00:00
|
|
|
'ncurses'
|
2023-02-18 16:15:40 +00:00
|
|
|
'zlib'
|
2023-02-18 11:56:57 +00:00
|
|
|
'libancient'
|
|
|
|
'libdiscid')
|
2022-09-24 02:12:18 +00:00
|
|
|
cd $_pkgbase
|
2023-02-20 13:20:23 +00:00
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core\
|
2023-02-20 12:51:33 +00:00
|
|
|
--without-x11 --without-sdl --without-sdl2\
|
2023-02-18 11:56:57 +00:00
|
|
|
--without-update-desktop-database\
|
|
|
|
--without-update-mime-database
|
|
|
|
make DESTDIR="$pkgdir" libocp.so
|
2021-06-24 07:28:59 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
2015-06-08 13:54:40 +00:00
|
|
|
}
|