: Added Files:
[hdw-repos/packages.git] / demian / ogg-vorbis / vorbis
1 # HDW Linux vorbis
2 #
3 # [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org
4 # [I] Audio compression tools. Open Source replacement
5 # [I] of the mp3 music format
6 # [V] 1.0
7 # [S] 3 8
8 # [D] libvorbis-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
9 # [D] vorbisinfo-0.2.pl http://drocklinux.dyndns.org/rene/vorbisinfo/
10 # [D] vorbis-tools-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
11 # [D] libogg-1.0.tar.gz http://www.vorbis.com/files/1.0/unix/
12
13 build_main()
14 {
15     ./configure $confopt ; make $make_conf ; make $install_conf install
16     cd ..
17     for pak in vorbis-tools-1.0 libogg-1.0
18     do
19         echo "untaring ${pak}.tar.gz"
20         tar --use-compress-program=gzip -xvf \
21             $archdir/${pak}.tar.gz
22         cd $pak ;
23         ./configure $confopt ; make $make_conf ; make $install_conf install
24         cd ..
25     done
26 }