Update PKGBUILD

We build with CMake now, so update the PKGBUILD script to match.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2016-10-29 17:23:59 -04:00
parent 63951568af
commit 34f21bf247
1 changed files with 4 additions and 3 deletions

View File

@ -2,13 +2,13 @@
pkgname=ocarina
pkgver=6.4.20
pkgrel=1
pkgdesc="A simple GTK+ and gstreamer based music player."
pkgdesc="A simple GTK+ and GStreamer based music player."
url="http://www.nowheycreamery.com/"
arch=('x86_64' 'i686' 'armv7h')
license=('GPL2')
depends=('gtkmm3>=3.16' 'gstreamer' 'gst-plugins-base' 'taglib' 'libmusicbrainz5' 'libcoverart')
optdepends=('gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly')
makedepends=('scons')
makedepends=('cmake')
conflicts=()
replaces=()
backup=()
@ -17,7 +17,8 @@ sha1sums=('')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
scons $MAKEFLAGS
cmake .
make $MAKEFLAGS
}
package() {