From 60bf248ad0c31c8bdb95b5d6d6b0c7adb0fafaac Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sun, 19 Mar 2017 21:06:40 +0100 Subject: deps: updated for KDE 5_17.03 Six packages have been added in order to compile the KDE packages libkface, digikam and kdenlive: - dvdauthor - frei0r - lensfun - mlt - opencv - vid.stab Furthermore I (re-)added some sources that I intend to use in the 'testing' branch of ktown. These Slackware originals were slightly modified and need to be compiled against wayland (also in need of recompilation are libxkbcommon and qt5 but those sources are already included): - elogind - mesa - xorg-server --- deps/mesa/get-mesa.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 deps/mesa/get-mesa.sh (limited to 'deps/mesa/get-mesa.sh') diff --git a/deps/mesa/get-mesa.sh b/deps/mesa/get-mesa.sh new file mode 100755 index 0000000..b883299 --- /dev/null +++ b/deps/mesa/get-mesa.sh @@ -0,0 +1,20 @@ +# Pull a stable branch + patches +BRANCH=7.10 + +rm -rf mesa +git clone git://anongit.freedesktop.org/git/mesa/mesa +# package the source archive and clean up: +( cd mesa + git checkout $BRANCH || exit 1 +) +HEADISAT="$(cat mesa/.git/packed-refs | grep "refs/remotes/origin/${BRANCH}$" | cut -b1-7)" +# Cleanup. We're not packing up the whole git repo. +( cd mesa && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null ) +DATE=$(date +%Y%m%d) +mv mesa mesa-${BRANCH}_${HEADISAT} +tar cf mesa-${BRANCH}_${HEADISAT}.tar mesa-${BRANCH}_${HEADISAT} +xz -9 mesa-${BRANCH}_${HEADISAT}.tar +rm -rf mesa-${BRANCH}_${HEADISAT} +echo +echo "Mesa branch $BRANCH with HEAD at $HEADISAT packaged as mesa-${BRANCH}_${HEADISAT}.tar.xz" +echo -- cgit v1.2.3