summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Duquesnoy2019-02-10 20:49:59 +0100
committerColin Duquesnoy2019-02-10 20:49:59 +0100
commit3056bb3483c3006295ca337c0cd3ac962d3bcf9c (patch)
tree1a605f351838db6355a2abc703b066e5faf876d5
parente5852610f748a71deb30e94e0a2220b378d68604 (diff)
downloadaur-3056bb3483c3006295ca337c0cd3ac962d3bcf9c.tar.gz
Fix CMake Error: No source or binary directory provided
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0c9bee4ee245..c348999a5193 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = mellowplayer
pkgdesc = Open source and cross-platform desktop application that runs web-based music streaming services in its own window and provides integration with your desktop.
pkgver = 3.5.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ColinDuquesnoy/MellowPlayer
arch = x86_64
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index d0c11463ba3c..f842316777a5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=mellowplayer
_pkgname=MellowPlayer
pkgver=3.5.2
-pkgrel=1
+pkgrel=2
pkgdesc="Open source and cross-platform desktop application that runs web-based music streaming
services in its own window and provides integration with your desktop."
url='https://github.com/ColinDuquesnoy/MellowPlayer'
@@ -25,7 +25,7 @@ prepare() {
build() {
cd $srcdir/MellowPlayer-${pkgver}
export MAKEFLAGS="-j$(nproc)"
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
make
}