first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/mpg123/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/mpg123/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.31.3
First version

16
src/mpg123/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="mpg123"
DESC="Console-based MP3 player"
VERSION="1.31.3"
FILES=("https://downloads.sourceforge.net/mpg123/mpg123-$VERSION.tar.bz2")
HASHES=("23ff362764374d3f2051862eea2d9a56")
DEPENDS=("alsa-lib" "pulseaudio")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -rf $NAME-$VERSION
}