[arch-commits] Commit in lz4/trunk (01-no-sudo.patch PKGBUILD)

Sébastien Luttringer seblu at archlinux.org
Sat Dec 13 15:52:45 UTC 2014


    Date: Saturday, December 13, 2014 @ 16:52:44
  Author: seblu
Revision: 227585

upgpkg: lz4 125-1

Added:
  lz4/trunk/01-no-sudo.patch
Modified:
  lz4/trunk/PKGBUILD

------------------+
 01-no-sudo.patch |   13 +++++++++++++
 PKGBUILD         |   12 +++++++++---
 2 files changed, 22 insertions(+), 3 deletions(-)

Added: 01-no-sudo.patch
===================================================================
--- 01-no-sudo.patch	                        (rev 0)
+++ 01-no-sudo.patch	2014-12-13 15:52:44 UTC (rev 227585)
@@ -0,0 +1,13 @@
+--- a/Makefile	2014-12-13 13:22:59.470287957 +0100
++++ b/Makefile	2014-12-13 16:48:35.988030397 +0100
+@@ -93,8 +93,8 @@
+ ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
+ 
+ install:
+-	@cd $(LZ4DIR); sudo $(MAKE) -e install
+-	@cd $(PRGDIR); sudo $(MAKE) -e install
++	@cd $(LZ4DIR); $(MAKE) -e install
++	@cd $(PRGDIR); $(MAKE) -e install
+ 
+ uninstall:
+ 	@cd $(LZ4DIR); $(MAKE) uninstall

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-12-13 15:20:02 UTC (rev 227584)
+++ PKGBUILD	2014-12-13 15:52:44 UTC (rev 227585)
@@ -5,7 +5,7 @@
 # He only push tested release code into svn and support using revision as version
 
 pkgname=lz4
-pkgver=124
+pkgver=125
 pkgrel=1
 pkgdesc='Very fast lossless compression algorithm'
 arch=('i686' 'x86_64')
@@ -14,9 +14,15 @@
 makedepends=('svn')
 checkdepends=('diffutils')
 depends=('glibc')
-source=("$pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver")
-md5sums=('SKIP')
+source=("$pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver"
+        '01-no-sudo.patch')
+md5sums=('SKIP'
+         '316915aff147579235092f3081447802')
 
+prepare() {
+  patch -d $pkgname -p1 < 01-no-sudo.patch
+}
+
 build() {
   cd $pkgname
   make



More information about the arch-commits mailing list