From 0689d1137758be4dd6f1b25386245fb508d522f3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 3 Mar 2012 19:37:35 +0100 Subject: [PATCH] remove package 'grep' Signed-off-by: Stephan Raue --- packages/sysutils/grep/build | 37 ---------------------------------- packages/sysutils/grep/install | 26 ------------------------ packages/sysutils/grep/meta | 36 --------------------------------- 3 files changed, 99 deletions(-) delete mode 100755 packages/sysutils/grep/build delete mode 100755 packages/sysutils/grep/install delete mode 100644 packages/sysutils/grep/meta diff --git a/packages/sysutils/grep/build b/packages/sysutils/grep/build deleted file mode 100755 index febb81ee69..0000000000 --- a/packages/sysutils/grep/build +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program 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, or (at your option) -# any later version. -# -# This Program 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.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -if [ "$ICONV" = "libiconv" ]; then - export LIBS="-liconv" -fi - -cd $PKG_BUILD -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - --disable-silent-rules \ - --disable-rpath \ - --with-gnu-ld \ - -make diff --git a/packages/sysutils/grep/install b/packages/sysutils/grep/install deleted file mode 100755 index 69358bb7ae..0000000000 --- a/packages/sysutils/grep/install +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program 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, or (at your option) -# any later version. -# -# This Program 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.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/bin - cp $PKG_BUILD/src/grep $INSTALL/usr/bin diff --git a/packages/sysutils/grep/meta b/packages/sysutils/grep/meta deleted file mode 100644 index ab02fba0a3..0000000000 --- a/packages/sysutils/grep/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program 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, or (at your option) -# any later version. -# -# This Program 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.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="grep" -PKG_VERSION="2.10" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="http://www.gnu.org/software/grep/" -PKG_URL="ftp://sunsite.cnlab-switch.ch/mirror/gnu/grep/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="$ICONV pcre" -PKG_BUILD_DEPENDS="toolchain $ICONV pcre" -PKG_PRIORITY="optional" -PKG_SECTION="system" -PKG_SHORTDESC="grep: This is GNU grep, the fastest grep in the west" -PKG_LONGDESC="GNU grep is based on a fast lazy-state deterministic matcher (about twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper search for a fixed string that eliminates impossible text from being considered by the full regexp matcher without necessarily having to look at every character. The result is typically many times faster than Unix grep or egrep." -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no"