CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
mpg123: Initial import (verified compilation).
authorVictor Martinez <pitillo@ono.com>
Fri, 12 Mar 2010 20:51:06 +0000 (20:51 +0000)
committerVictor Martinez <pitillo@ono.com>
Fri, 12 Mar 2010 20:51:06 +0000 (20:51 +0000)
mpg123/.footprint [new file with mode: 0644]
mpg123/.md5sum [new file with mode: 0644]
mpg123/Pkgfile [new file with mode: 0644]

diff --git a/mpg123/.footprint b/mpg123/.footprint
new file mode 100644 (file)
index 0000000..a8ccb79
--- /dev/null
@@ -0,0 +1,22 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/mpg123
+drwxr-xr-x     root/root       usr/include/
+-rw-r--r--     root/root       usr/include/mpg123.h
+drwxr-xr-x     root/root       usr/lib/
+-rwxr-xr-x     root/root       usr/lib/libmpg123.la
+lrwxrwxrwx     root/root       usr/lib/libmpg123.so -> libmpg123.so.0.22.1
+lrwxrwxrwx     root/root       usr/lib/libmpg123.so.0 -> libmpg123.so.0.22.1
+-rwxr-xr-x     root/root       usr/lib/libmpg123.so.0.22.1
+drwxr-xr-x     root/root       usr/lib/mpg123/
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_alsa.la
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_alsa.so
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_dummy.la
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_dummy.so
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_oss.la
+-rwxr-xr-x     root/root       usr/lib/mpg123/output_oss.so
+drwxr-xr-x     root/root       usr/lib/pkgconfig/
+-rw-r--r--     root/root       usr/lib/pkgconfig/libmpg123.pc
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/mpg123.1.gz
diff --git a/mpg123/.md5sum b/mpg123/.md5sum
new file mode 100644 (file)
index 0000000..7e2ed24
--- /dev/null
@@ -0,0 +1 @@
+0005c9a89c381484e2d2ff450b3dfe5e  mpg123-1.10.0.tar.bz2
diff --git a/mpg123/Pkgfile b/mpg123/Pkgfile
new file mode 100644 (file)
index 0000000..6def922
--- /dev/null
@@ -0,0 +1,23 @@
+# Description: Commandline MP3 player 
+# URL: http://www.mpg123.de
+# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: libtool alsa-lib
+
+name=mpg123
+version=1.10.0
+release=1
+source=(http://www.mpg123.de/download/$name-$version.tar.bz2)
+
+build() {
+  cd $name-$version
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=/usr/man \
+              --with-audio=alsa,oss,dummy \
+              --with-default-audio=alsa \
+              --with-cpu=generic_nofpu
+  make
+  make DESTDIR=$PKG install
+}