summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBłażej Szczygieł2018-02-03 20:02:08 +0100
committerBłażej Szczygieł2018-02-03 20:02:25 +0100
commitfd8af37ab62c4bcb030b5e0a9799a6432355f716 (patch)
tree8abd1f83adf9cab82fc9a64fd532e903de2dc581
parent95ae2444efc651b8c37f9c9c82e840c89609950f (diff)
downloadaur-fd8af37ab62c4bcb030b5e0a9799a6432355f716.tar.gz
Disable ccache, bump version
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD11
2 files changed, 9 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d6164be8ab13..1e5557af5dee 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Sat Dec 30 23:47:29 UTC 2017
+# Sat Feb 3 19:02:22 UTC 2018
pkgbase = qmplay2-git
pkgdesc = QMPlay2 is a video and audio player which can play most formats and codecs
- pkgver = 17.12.31
+ pkgver = 18.02.03
pkgrel = 1
url = http://zaps166.sourceforge.net/?app=QMPlay2
arch = i686
@@ -16,7 +16,6 @@ pkgbase = qmplay2-git
makedepends = pkg-config
makedepends = qt5-tools
makedepends = cmake
- makedepends = ccache
depends = qt5-base
depends = qt5-svg
depends = qt5-x11extras
diff --git a/PKGBUILD b/PKGBUILD
index 7ed931fee86b..e404bc552796 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: zaps166 <spaz16@wp.pl>
pkgname=qmplay2-git
-pkgver=17.12.31
+pkgver=18.02.03
pkgrel=1
pkgdesc='QMPlay2 is a video and audio player which can play most formats and codecs'
arch=('i686' 'x86_64' 'armv7h' 'armv6h')
@@ -12,7 +12,7 @@ optdepends=('pulseaudio: PulseAudio support'
'game_music_emu-kode54-git: Better chiptune support (less bugs in sound, AUR package)')
conflicts=('qmplay2')
provides=('qmplay2')
-makedepends=('make' 'gcc' 'git' 'pkg-config' 'qt5-tools' 'cmake' 'ccache')
+makedepends=('make' 'gcc' 'git' 'pkg-config' 'qt5-tools' 'cmake')
source=('git+https://github.com/zaps166/QMPlay2')
sha256sums=('SKIP')
@@ -26,13 +26,16 @@ build()
# Uncomment below line if you don't want to have 'libsidplayfp' dependency and remove it from 'depends' list
#USE_SIDPLAYFP='-DUSE_CHIPTUNE_SID=OFF'
- # Comment below line if you don't want to use 'jemalloc' and remove it from 'depends' list
+ # Uncomment below line if you don't want to use 'jemalloc' and remove it from 'depends' list
#USE_JEMALLOC='-DUSE_JEMALLOC=ON'
+ # Uncomment below line for ccache
+ #USE_CCACHE='-DCMAKE_CXX_COMPILER_LAUNCHER=ccache'
+
cd $srcdir
mkdir -p QMPlay2-build
cd QMPlay2-build
- cmake ../QMPlay2 -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DUSE_LINK_TIME_OPTIMIZATION=OFF -DCMAKE_CXX_COMPILER_LAUNCHER=ccache $USE_JEMALLOC $USE_SIDPLAYFP
+ cmake ../QMPlay2 -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DUSE_LINK_TIME_OPTIMIZATION=OFF $USE_CCACHE $USE_JEMALLOC $USE_SIDPLAYFP
time make
}