This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dpkg-buildpackage: source package lumina-desktop | |
dpkg-buildpackage: source version 0.8.3.427-1nano | |
dpkg-buildpackage: source distribution unstable | |
dpkg-buildpackage: source changed by Christopher Roy Bratusek <[email protected]> | |
dpkg-source --before-build lumina | |
dpkg-buildpackage: host architecture amd64 | |
fakeroot debian/rules clean | |
dh clean --parallel | |
dh_testdir -O--parallel | |
debian/rules override_dh_auto_clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 14%] Built target collada | |
[ 15%] Built target convexDecomp | |
[ 15%] Built target libogg | |
[ 17%] Built target libtheora | |
[ 19%] Built target libvorbis | |
[ 22%] Built target ljpeg | |
[ 23%] Built target lmng | |
[ 25%] Built target lpng | |
[ 25%] Built target lungif | |
[ 28%] Built target opcode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- nightingale-hacking-sb-trunk-oldxul_old/extensions/foldersync/chrome/content/dialogs/availabletags.xul 2015-02-01 22:55:46.000000000 +0100 | |
+++ nightingale-hacking-sb-trunk-oldxul_new/extensions/foldersync/chrome/content/dialogs/availabletags.xul 2015-02-10 20:37:23.704514258 +0100 | |
@@ -93,6 +93,10 @@ | |
<label style="-moz-user-select:text; cursor: text">%tracknumber%</label> | |
<label>&availabletags.tracknumber;</label> | |
</row> | |
+ <row> | |
+ <label style="-moz-user-select:text; cursor: text">%artistfl%</label> | |
+ <label>&availabletags.artistfl;</label> | |
+ </row> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# adress, i.e.: http://ppa.launchpad.net/djcj/nightingale/ubuntu/pool/main/n/nightingale/nightingale-common_1.13+20141127-1~utopic_all.deb | |
adress=${1} | |
# source package name, i.e.: nightingale | |
srcpkg=${2} | |
# version string | |
version=$(basename ${adress} | cut -d '_' -f2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# tested on Ubuntu 14.04 x64 | |
CFLAGS='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security' | |
CXXFLAGS="$CFLAGS" | |
CPPFLAGS=-D_FORTIFY_SOURCE=2 | |
LDFLAGS='-Wl,-Bsymbolic-functions -Wl,-z,relro' | |
libdir=/usr/lib/x86_64-linux-gnu | |
premake4 gmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.TH VPXENC 1 "NOVEMBER 2014" | |
.SH NAME | |
vpxenc \- VP8 and VP9 video codec encoding tool | |
.SH SYNOPSIS | |
.B vpxenc \fR<options> -o dst_filename src_filename | |
.SH OPTIONS | |
.TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.TH AFTEN 1 "NOVEMBER 2014" | |
.SH NAME | |
Aften \- A/52 audio encoder | |
.SH SYNOPSIS | |
.B aften \fR[options] <input.wav> <output.ac3> | |
.SH OPTIONS | |
.TP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/app/content/xul/mediacore/mediacoreEqualizer.xul | |
+++ b/app/content/xul/mediacore/mediacoreEqualizer.xul | |
@@ -159,7 +159,6 @@ | |
<label value="0" id="eq-label-band9" class="sb-eq-label" /> | |
</vbox> | |
</hbox> | |
- <xul:ng-eq-preset-list id="equalizer-pesets"/> | |
</vbox> | |
<script type="application/x-javascript" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -z "$1" ] ; then | |
echo "Convert MediaInfo encoding settings to x264 commands" | |
echo "Usage: $0 <video>" | |
echo " $0 \"MediaInfo encoding settings\"" | |
exit 0 | |
fi | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Install dependencies: | |
# sudo apt-get install chrpath cmake git libfluidsynth-dev libglew-dev libgtk2.0-dev libsdl1.2-dev | |
if [ "$(uname)" != "Linux" ] ; then | |
echo "Not running GNU/Linux" | |
exit 1 | |
fi | |