mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
903 B
Bash
27 lines
903 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Tom Killian <tomk@runbox.com>
|
|
# Contributor: Spider.007 <archPackage@spider007.net>
|
|
|
|
pkgname=xfmedia
|
|
pkgver=0.9.2
|
|
pkgrel=5
|
|
pkgdesc="xfce media player"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://spuriousinterrupt.org/projects/xfmedia/"
|
|
depends=(xine-lib taglib exo libxtst libxss libxfcegui4 dbus-glib)
|
|
makedepends=('intltool')
|
|
install=(xfmedia.install)
|
|
source=(http://spuriousinterrupt.org/files/$pkgname/$pkgname-$pkgver.tar.bz2 \
|
|
xfmedia-dbus-0.6-support.patch)
|
|
md5sums=('6eb8bd1f67201f829e0f45e733c02bd5' '8f2aa12eea584de65d8ed28179e56b51')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
patch -Np1 -i ../xfmedia-dbus-0.6-support.patch
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
find $startdir/pkg -name '*.la' -exec rm {} \;
|
|
}
|