|
From: Mike M. <che...@ya...> - 2003-10-30 01:51:20
|
#!/dev/null # Here is my second go at a howto build/install, I'm using debian but you don't have to. cvs -z3 -d:pserver:ano...@cv...:/cvsroot/nvrec co -d nvrec-current nvrec || exit 1 cd nvrec-current # First step is to autoconf, there is a script called bootstrap. These are what I use to satisfy # it's dependancys. # ii autoconf 2.57-10 automatic configure script builder # ii automake1.7 1.7.8-1 A tool for generating GNU Standards-complian # I remove any other auto* package. # This will get alsa built. I only use divx4rec, so can some one post all the *-dev(s)? apt-get -yf install libasound2-dev # I also had to satisfy debian builddeps, dpkg-buildpackage will help there. ./bootstrap && ./configure && make && # Also don't forget the patch in my previous posting "2003-08-22 12:00" chmod +x debian/rules dpkg-buildpackage -uc -b -nc; # This don't do much exept duilddeps untill [ -x debian/rules ]. cd .. dpkg -i nvrec_20030310-3_i386.deb exit $? __________________________________ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/ |