Template
1
0
Fork 0
mirror of https://aur.archlinux.org/ocp-git.git synced 2024-10-22 21:42:56 +00:00
ocp-git/PKGBUILD

107 lines
3.2 KiB
Bash
Raw Normal View History

# Maintainer: Xavier Moffett (sapphirus at azorium dot net)
# Contributor: Ossi Saukko <osaukko at gmail dot com>
_pkgbase=ocp
2023-02-18 11:59:44 +00:00
pkgname=('ocp-git' 'ocp-sdl2-git')
pkgver=0.2.109.r11.c1069f5
2023-02-18 13:41:53 +00:00
pkgrel=1
pkgdesc="Open Cubic Player (GIT Version)"
2015-09-09 13:51:44 +00:00
arch=('i686' 'x86_64')
url="https://stian.cubic.org/project-ocp.php"
2015-09-09 13:51:44 +00:00
license=('GPL')
2023-05-20 05:42:18 +00:00
source=(${_pkgbase}::git+https://github.com/mywave82/opencubicplayer.git)
sha256sums=('SKIP')
2023-02-18 11:59:44 +00:00
optdepends=('libvorbis: Vorbis codec support'
2024-10-11 22:01:16 +00:00
'libmad: MPEG codec support'
'flac: FLAC codec support'
'libgme: Video game music emulation/playback support')
2023-02-18 13:35:51 +00:00
makedepends=('alsa-lib'
2024-10-11 22:01:16 +00:00
'cjson'
'desktop-file-utils'
'freetype2'
'flac'
'git'
'ncurses'
'sdl2'
'xa'
'libgme'
'libancient'
'libdiscid'
'libmad'
'libjpeg-turbo'
'libpng'
'libvorbis')
2015-09-09 13:51:44 +00:00
pkgver() {
2024-10-11 22:43:43 +00:00
cd $_pkgbase
echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')"
}
prepare() {
2024-10-11 22:43:43 +00:00
cd $_pkgbase
git submodule init
git submodule update --init --recursive
2015-09-09 13:51:44 +00:00
}
build() {
2024-10-11 22:43:43 +00:00
cd $_pkgbase
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core cross_compiling=yes\
--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
make DESTDIR="$pkgdir" subdirs ocp ocp.hlp
2023-02-18 11:59:44 +00:00
}
package_ocp-sdl2-git() {
2024-10-11 22:01:16 +00:00
provides=(${_pkgbase}=${pkgver})
2024-10-11 22:43:43 +00:00
conflicts=('ocp' 'ocp-curses')
install=${_pkgbase}.install
depends=('alsa-lib'
'bzip2'
'cjson'
'freetype2'
'hicolor-icon-theme'
'ncurses'
'sdl2'
'shared-mime-info'
'zlib'
'libancient'
'libdiscid'
'libjpeg-turbo'
'libpng'
'ttf-unifont')
cd $_pkgbase
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core cross_compiling=yes\
--without-sdl --without-x11\
--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
make DESTDIR="$pkgdir" libocp.so
make DESTDIR="$pkgdir" install
2015-09-09 13:51:44 +00:00
}
2023-02-18 11:59:44 +00:00
package_ocp-git() {
2024-10-11 22:43:43 +00:00
provides=(${_pkgbase}=${pkgver})
conflicts=('ocp' 'ocp-curses')
depends=('alsa-lib'
2024-10-11 22:01:16 +00:00
'bzip2'
'cjson'
'ncurses'
'zlib'
'libancient'
'libdiscid')
2024-10-11 22:43:43 +00:00
cd $_pkgbase
./configure --prefix=/usr --sysconfdir=/etc --with-builtin=core\
--without-x11 --without-sdl --without-sdl2\
--without-update-desktop-database\
--without-update-mime-database
make DESTDIR="$pkgdir" libocp.so
make DESTDIR="$pkgdir" install
2015-09-09 13:51:44 +00:00
}
2024-10-11 22:43:43 +00:00
# vim:set ts=4 sw=4 et:1