Package Details: noson-app 5.6.6.r0.ga5fd1331-1

Git Clone URL: https://aur.archlinux.org/noson-app.git (read-only, click to copy)
Package Base: noson-app
Description: The essential to control music from your SONOS devices on Linux platforms
Upstream URL: https://janbar.github.io/noson-app
Keywords: sonos
Licenses: GPL3
Submitter: s0me0ne
Maintainer: s0me0ne
Last Packager: s0me0ne
Votes: 11
Popularity: 0.30
First Submitted: 2018-03-04 13:20 (UTC)
Last Updated: 2024-03-12 18:55 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

gwpl commented on 2018-05-02 12:23 (UTC) (edited on 2018-05-02 12:24 (UTC) by gwpl)

$ pacaur -S noson-app
(...)
:: noson-app package(s) failed to install. Check .SRCINFO for mismatching data with PKGBUILD.

$ cd .cache/pacaur/noson-app

$ cat .SRCINFO 
pkgbase = noson-app
        pkgdesc = The essential to control music from your SONOS devices on Linux platforms
        pkgver = 3.3.4
        pkgrel = 1
        url = https://janbar.github.io/noson-app
        arch = x86_64
        groups = base-devel
        license = GPL3
        makedepends = cmake
        makedepends = git
        depends = cmake
        depends = qt5-base
        depends = qt5-quickcontrols2
        depends = qt5-graphicaleffects
        depends = qt5-svg
        source = git+git://github.com/janbar/noson-app.git#tag=3.3.4
        sha1sums = SKIP

pkgname = noson-app

$ cat  PKGBUILD 
# Maintainer: Matthias Baur  <aur@matthiasbaur.me>
pkgname=noson-app
pkgver=3.3.4.r0.g6c0014a
pkgrel=1
pkgdesc="The essential to control music from your SONOS devices on Linux platforms"
arch=('x86_64')
url="https://janbar.github.io/noson-app"
license=('GPL3')
groups=('base-devel')
depends=('cmake' 'qt5-base' 'qt5-quickcontrols2' 'qt5-graphicaleffects' 'qt5-svg')
makedepends=('cmake' 'git')
source=("git+git://github.com/janbar/noson-app.git#tag=3.3.4")
sha1sums=('SKIP')

pkgver() {
  cd "$srcdir/${pkgname%-git}"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  mkdir -p "$srcdir/build"
  cd "$srcdir/build"
  cmake "$srcdir/${pkgname%-git}" \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_INSTALL_LIBDIR=/lib
  make
}

package() {
  cd "$srcdir/build"
  make DESTDIR="$pkgdir/" install
}

s0me0ne commented on 2018-03-05 21:54 (UTC)

Oh, yeah that probably a good idea. Fixed. Thanks! :)

jagaudin commented on 2018-03-05 21:07 (UTC)

This installs the app in /usr/local. To fix this, do: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/lib ..