Package Details: mpg321 0.3.2-2

Git Clone URL: https://aur.archlinux.org/mpg321.git (read-only, click to copy)
Package Base: mpg321
Description: A completely free drop-in replacement for mpg123
Upstream URL: https://sourceforge.net/projects/mpg321/
Licenses: GPL
Conflicts: mpg123
Provides: mpg123
Submitter: kett
Maintainer: Chocobo1
Last Packager: Chocobo1
Votes: 49
Popularity: 0.000000
First Submitted: 2008-08-27 05:00 (UTC)
Last Updated: 2023-12-22 18:50 (UTC)

Required by (174)

Sources (1)

Latest Comments

pbear commented on 2022-03-12 17:22 (UTC) (edited on 2022-03-12 17:24 (UTC) by pbear)

I cannot install it mpg321.c: Dans la fonction « id3_get_tag »: mpg321.c:1238:15: note: longueur calculée ici 1238 | len = strlen(latin1); | ^~~~~~~~~~~~~~ cc1 : certains avertissements sont traités comme des erreurs make[2]: *** [Makefile:369 : mpg321.o] Erreur 1 make[2] : on quitte le répertoire « /home/pbear/.cache/yay/mpg321/src/mpg321-0.3.2-orig » make[1]: *** [Makefile:427 : all-recursive] Erreur 1 make[1] : on quitte le répertoire « /home/pbear/.cache/yay/mpg321/src/mpg321-0.3.2-orig » make: *** [Makefile:253 : all] Erreur 2 ==> ERREUR : Une erreur s’est produite dans build(). Abandon… -> erreur lors de la construction : mpg321

fgr commented on 2013-07-03 10:12 (UTC)

you need to modify some strings: -pkgver=0.2.13 -pkgrel=2 +pkgver=0.3.2 +pkgrel=1 -source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}-${pkgrel}.tar.gz") -sha512sums=('bf9312748e772b4b69593b0fb314730eb2995b39369514867d5e216a65e578bdeae82acfcf22b19b1d49e856be9ffa3680e3d1135c47e3cd868187836ceaff42') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}_${pkgver}.orig.tar.gz") +sha256sums=('056fcc03e3f5c5021ec74bb5053d32c4a3b89b4086478dcf81adae650eac284e') - cd $pkgname-$pkgver-$pkgrel + cd $pkgname-$pkgver-orig

bohoomil commented on 2010-12-09 00:01 (UTC)

In case someone needs, there's a corrected PKGBUILD: http://pastebin.com/9wM0JfF5

darehanl commented on 2010-07-29 04:09 (UTC)

# This seems to work. pkgname=mpg321 pkgver=0.2.12 pkgrel=1 pkgdesc='a completely Free drop-in replacement for mpg123, for the use of frontends, shell scripts, etc.' arch=('i686' 'x86_64') url='http://sourceforge.net/projects/mpg321/' license=('GPL') depends=('libmad' 'libao' 'libid3tag') provides=('mpg123') conflicts=('mpg123') source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}-1.tar.gz) md5sums=('abd1e2ea6a606389ff19da66d252e530') build() { cd $pkgname-$pkgver-1 ./configure --prefix=/usr make || return 1 make DESTDIR="$pkgdir" install || return 1 }