[arch-commits] Commit in grep/repos (4 files)

Allan McRae allan at archlinux.org
Wed Feb 8 23:59:21 UTC 2012


    Date: Wednesday, February 8, 2012 @ 18:59:21
  Author: allan
Revision: 149654

db-move: moved grep from [staging] to [testing] (i686)

Added:
  grep/repos/testing-i686/
  grep/repos/testing-i686/PKGBUILD
    (from rev 149641, grep/repos/staging-i686/PKGBUILD)
  grep/repos/testing-i686/grep.install
    (from rev 149641, grep/repos/staging-i686/grep.install)
Deleted:
  grep/repos/staging-i686/

--------------+
 PKGBUILD     |   34 ++++++++++++++++++++++++++++++++++
 grep.install |   21 +++++++++++++++++++++
 2 files changed, 55 insertions(+)

Copied: grep/repos/testing-i686/PKGBUILD (from rev 149641, grep/repos/staging-i686/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-02-08 23:59:21 UTC (rev 149654)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=grep
+pkgver=2.10
+pkgrel=2
+pkgdesc="A string search utility"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/grep/grep.html"
+groups=('base')
+depends=('glibc' 'pcre' 'sh')
+makedepends=('texinfo')
+install=${pkgname}.install
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('709915434d09f5db655e5ebd7fd6bb7f'
+         '9ad5c390a6ad7f566c58db28ddb06aed')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --without-included-regex
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: grep/repos/testing-i686/grep.install (from rev 149641, grep/repos/staging-i686/grep.install)
===================================================================
--- testing-i686/grep.install	                        (rev 0)
+++ testing-i686/grep.install	2012-02-08 23:59:21 UTC (rev 149654)
@@ -0,0 +1,21 @@
+infodir=usr/share/info
+filelist=(grep.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+




More information about the arch-commits mailing list