: Modified Files:
[hdw-repos/packages.git] / demian / ogg-vorbis / ogg-vorbis
diff --git a/demian/ogg-vorbis/ogg-vorbis b/demian/ogg-vorbis/ogg-vorbis
new file mode 100755 (executable)
index 0000000..654cdbd
--- /dev/null
@@ -0,0 +1,26 @@
+# HDW Linux vorbis
+#
+# [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org
+# [I] Audio compression tools. Open Source replacement
+# [I] of the mp3 music format
+# [V] 1.0
+# [S] 3 8
+# [D] libvorbis-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
+# [D] vorbisinfo-0.2.pl http://drocklinux.dyndns.org/rene/vorbisinfo/
+# [D] vorbis-tools-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
+# [D] libogg-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
+
+build_main()
+{
+    ./configure $confopt ; make $make_conf ; make $install_conf install
+    cd ..
+    for pak in vorbis-tools-1.0 libogg-1.0
+    do
+       echo "untaring ${pak}.tar.gz"
+       tar --use-compress-program=gzip -xvf \
+           $archdir/${pak}.tar.gz
+       cd $pak ;
+       ./configure $confopt ; make $make_conf ; make $install_conf install
+       cd ..
+    done
+}