From 01fe3b42ca3a25fc9186267ee8cd44f0da2e03eb Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Mon, 14 Mar 2016 15:37:48 -0700 Subject: [PATCH] xf86-video-amdgpu: remove mkpkg script --- tools/mkpkg/mkpkg_xf86-video-amdgpu | 41 ----------------------------- 1 file changed, 41 deletions(-) delete mode 100755 tools/mkpkg/mkpkg_xf86-video-amdgpu diff --git a/tools/mkpkg/mkpkg_xf86-video-amdgpu b/tools/mkpkg/mkpkg_xf86-video-amdgpu deleted file mode 100755 index 0bd65c54cc..0000000000 --- a/tools/mkpkg/mkpkg_xf86-video-amdgpu +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 2 of the License, or -# (at your option) any later version. -# -# OpenELEC is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC. If not, see . -################################################################################ - -echo "getting sources..." - if [ ! -d xf86-video-amdgpu.git ]; then - git clone git://anongit.freedesktop.org/xorg/driver/xf86-video-amdgpu xf86-video-amdgpu.git - fi - - cd xf86-video-amdgpu.git - git pull - GIT_REV=`git log -n1 --format=%h` - cd .. - -echo "copying sources..." - rm -rf xf86-video-amdgpu-$GIT_REV - cp -R xf86-video-amdgpu.git xf86-video-amdgpu-$GIT_REV - -echo "cleaning sources..." - rm -rf xf86-video-amdgpu-$GIT_REV/.git - -echo "packing sources..." - tar cvJf xf86-video-amdgpu-$GIT_REV.tar.xz xf86-video-amdgpu-$GIT_REV - -echo "remove temporary sourcedir..." - rm -rf xf86-video-amdgpu-$GIT_REV