ref: a9967dd8bdb1371b76bf91d1ef118e4a77a6fa76
parent: 58a980e4715f44abe4e4f424998abb1db09961ba
author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
date: Fri Dec 11 05:01:01 EST 2020
fix install.rc, add more traces
--- a/install.rc
+++ b/install.rc
@@ -4,6 +4,7 @@
cd ..
+echo downloading and building dav1d
test -d dav1d || { hget https://git.sr.ht/~ft/dav1d/archive/master.tar.gz | tar xz && \
mv dav1d-master dav1d && \
cd dav1d/src && \
@@ -11,6 +12,7 @@
cd ../../
}
+echo downloading and building faad2
test -d faad2-master || { hget https://git.sr.ht/~ft/faad2/archive/master.tar.gz | tar xz && \
cd faad2-master/libfaad && \
mk install && \
@@ -19,13 +21,15 @@
cd ../..
}
+echo downloading and building openh264
test -d openh264 || { hget https://git.sr.ht/~ft/openh264/archive/master.tar.gz | tar xz && \
- mv openh264-master h264bsd && \
+ mv openh264-master openh264 && \
cd openh264/codec && \
mk && \
cd ../..
}
+echo downloading and building libvpx
test -d libvpx || { hget https://git.sr.ht/~ft/libvpx/archive/master.tar.gz | tar xz && \
mv libvpx-master libvpx && \
cd libvpx && \
@@ -33,6 +37,7 @@
cd ..
}
+echo downloading and building mcfs
test -d mcfs-master || { hget https://git.sr.ht/~ft/mcfs/archive/master.tar.gz | tar xz && \
cd mcfs-master && \
mk install && \
@@ -39,22 +44,27 @@
cd ..
}
+echo downloading opus
test -d opus || { hget https://github.com/xiph/opus/archive/master.tar.gz | tar xz && \
mv opus-master opus
}
+echo downloading libopusenc
test -d libopusenc || { hget https://github.com/xiph/libopusenc/archive/master.tar.gz | tar xz && \
mv libopusenc-master libopusenc
}
+echo downloading opusfile
test -d opusfile || { hget https://github.com/xiph/opusfile/archive/master.tar.gz | tar xz && \
mv opusfile-master opusfile
}
+echo downloading opus-tools
test -d opus-tools || { hget https://github.com/xiph/opus-tools/archive/master.tar.gz | tar xz && \
mv opus-tools-master opus-tools
}
+echo downloading alienpatch and building all things opus
test -d alienpatch || { hget https://github.com/qwx9/alienpatch/archive/master.tar.gz | tar xz && \
mv alienpatch-master alienpatch && \
for(i in opus libopusenc opusfile opus-tools) { \
@@ -65,6 +75,9 @@
}
}
+echo committing treason
cd treason && \
mk install && \
rm -rf ../^(dav1d faad2-master openh264 libvpx mcfs-master opus libopusenc opusfile opus-tools alienpatch)
+
+echo treason has been committed