mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added arm optimized mpg123
This commit is contained in:
parent
55225db153
commit
1cc9ee3373
1 changed files with 35 additions and 0 deletions
35
aur/mpeg123-arm/PKGBUILD
Normal file
35
aur/mpeg123-arm/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Maintainer: Kai Uwe Jesussek <kajot@gmx.net>
|
||||
|
||||
pkgname=mpg123-arm
|
||||
_pkgname=mpg123
|
||||
pkgver=1.13.2
|
||||
pkgrel=1
|
||||
pkgdesc="A console-based real-time MPEG-1/2/3 audio player (integer only)"
|
||||
arch=('i686' 'x86_64' 'arm')
|
||||
url="http://www.mpg123.org/"
|
||||
license=('GPL2' 'LGPL2')
|
||||
|
||||
makedepends=('sdl')
|
||||
optdepends=('alsa-lib: For additional audio support'
|
||||
'sdl: For additional audio support')
|
||||
|
||||
provides=('mpg321' "mpg123=$pkgver")
|
||||
conflicts=('mpg321' 'mpg123')
|
||||
replaces=('mpg321')
|
||||
|
||||
source=("http://downloads.sourceforge.net/sourceforge/mpg123/mpg123-$pkgver.tar.bz2")
|
||||
sha256sums=('c4677653adb656e0f15a7b6dafa5c166eeeb1dc6c20b9a9a6d02efa83afc0d01')
|
||||
|
||||
|
||||
options=('libtool')
|
||||
build() {
|
||||
cd "$srcdir"/$_pkgname-$pkgver
|
||||
|
||||
./configure --with-cpu=arm_nofpu --prefix=/usr --with-audio="alsa sdl"
|
||||
make
|
||||
}
|
||||
package() {
|
||||
cd "$srcdir"/$_pkgname-$pkgver
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
Loading…
Reference in a new issue