mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
|
|
|
# remove when bumped upstream
|
|
|
|
pkgname=mpg123
|
|
pkgver=1.29.3
|
|
pkgrel=1.1
|
|
pkgdesc='Console based real time MPEG Audio Player for Layer 1, 2 and 3'
|
|
url="https://sourceforge.net/projects/mpg123"
|
|
arch=('x86_64')
|
|
license=('LGPL2.1')
|
|
depends=('libltdl' 'alsa-lib')
|
|
makedepends=('sdl' 'jack' 'libpulse')
|
|
optdepends=('sdl: for sdl audio support'
|
|
'jack: for jack audio support'
|
|
'libpulse: for pulse audio support'
|
|
'perl: for conplay')
|
|
provides=(libmpg123.so libout123.so)
|
|
source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
|
|
sha512sums=('0d8db63f9bae1507887bc5241a56abccfeb767b7ba8362eb0fce9de2f63369e57fdd6f25a953f8ef5f9ead4f400237db51914816e278566fdf8e6f205ebca5d6'
|
|
'SKIP')
|
|
validpgpkeys=('D021FF8ECF4BE09719D61A27231C4CBC60D5CAFE')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-int-quality \
|
|
--with-audio="alsa oss sdl jack pulse"
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm 755 scripts/conplay "${pkgdir}/usr/bin/conplay"
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|