diff options
Diffstat (limited to 'community/xnoise/PKGBUILD')
-rwxr-xr-x | community/xnoise/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/community/xnoise/PKGBUILD b/community/xnoise/PKGBUILD index 729ad49e5..2e7eef423 100755 --- a/community/xnoise/PKGBUILD +++ b/community/xnoise/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 102565 2013-12-15 04:07:27Z fyan $ +# $Id: PKGBUILD 106330 2014-02-28 07:09:33Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: archtux <antonio dot arias99999 at gmail dot com> pkgname=xnoise -pkgver=0.2.20 +pkgver=0.2.21 pkgrel=1 pkgdesc="Media player with a slick GUI, great speed and lots of features." arch=('i686' 'x86_64') @@ -15,23 +15,23 @@ optdepends=('gst-plugins-base: Basic media codecs' 'gst-plugins-ugly: Extra media codecs' 'gst-libav: Extra media codecs' 'gvfs: Needed for fetching album art') -makedepends=('vala' 'intltool') +makedepends=('vala' 'intltool' 'git' 'gnome-common') install=$pkgname.install -source=("https://bitbucket.org/shuerhaaken/xnoise/downloads/$pkgname-$pkgver.tar.gz") +source=("git+https://bitbucket.org/shuerhaaken/xnoise.git#tag=$pkgver") build() { - cd $pkgname-$pkgver - - ./configure --prefix=/usr + cd $pkgname + + ./autogen.sh --prefix=/usr make } package() { - cd $pkgname-$pkgver + cd $pkgname make DESTDIR="$pkgdir" install # Remove obsolete files rm -rf "$pkgdir/usr/include" "$pkgdir/usr/share/vala" } -sha512sums=('d2bcf7c8fa542ef9703a831583ab90e1a03f00a0740b068966cb8bf5c76475832cf04eb55b9f14ac1c5aa50536d8e3965ac3e0d22503af44e1af8e7f908d2390') +sha512sums=('SKIP') |