mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
23 lines
675 B
Bash
23 lines
675 B
Bash
# $Id: PKGBUILD 32972 2009-04-03 13:47:52Z andrea $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=mp3blaster
|
|
pkgver=3.2.5
|
|
pkgrel=2
|
|
pkgdesc="A console based mp3 and OGG player."
|
|
depends=('ncurses' 'libvorbis' 'sdl' 'libsidplay')
|
|
url="http://mp3blaster.sourceforge.net"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('edb3bb122553d2d544dfb084010311c6')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=${pkgdir}/usr install
|
|
}
|