blob: 3193ca8653b8c80e9b630e9b798bf4e2066bcc47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $Id: PKGBUILD 111139 2014-05-14 16:45:50Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: archtux <antonio dot arias99999 at gmail dot com>
pkgname=xnoise
pkgver=0.2.21
pkgrel=2
pkgdesc="Media player with a slick GUI, great speed and lots of features."
arch=('i686' 'x86_64')
url="http://www.xnoise-media-player.com/"
license=('GPL2')
depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo>=0.2' 'librsvg')
optdepends=('gst-plugins-base: Basic media codecs'
'gst-plugins-bad: Extra media codecs'
'gst-plugins-ugly: Extra media codecs'
'gst-libav: Extra media codecs'
'gvfs: Needed for fetching album art')
makedepends=('vala' 'intltool' 'git' 'gnome-common')
install=$pkgname.install
source=("git+https://bitbucket.org/shuerhaaken/xnoise.git#tag=$pkgver")
build() {
cd $pkgname
./autogen.sh --prefix=/usr
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
# Remove obsolete files
rm -rf "$pkgdir/usr/include" "$pkgdir/usr/share/vala"
}
sha512sums=('SKIP')
|