diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:37 -0400 |
commit | 81cd367e5cc7a72bb8b3fed4bc05b59001af2316 (patch) | |
tree | b683ef4e77b834a669ec289d8e6e27d66ae6f651 | |
parent | 0215c104e517d7cda166bfbc674468c1401cd42c (diff) | |
download | slackbuilds-81cd367e5cc7a72bb8b3fed4bc05b59001af2316.tar.gz |
business/gnucash: Fixed for bash4.
-rw-r--r-- | business/gnucash/gnucash.SlackBuild | 8 | ||||
-rw-r--r-- | business/gnucash/gnucash.info | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/business/gnucash/gnucash.SlackBuild b/business/gnucash/gnucash.SlackBuild index afb0673228..f09e49dd96 100644 --- a/business/gnucash/gnucash.SlackBuild +++ b/business/gnucash/gnucash.SlackBuild @@ -81,12 +81,8 @@ make install DESTDIR=$PKG # Create the gconf defaults directory mkdir -p $PKG/etc/gconf/gconf.xml.defaults -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; diff --git a/business/gnucash/gnucash.info b/business/gnucash/gnucash.info index 66cf9e2d25..42b8272126 100644 --- a/business/gnucash/gnucash.info +++ b/business/gnucash/gnucash.info @@ -2,8 +2,8 @@ PRGNAM="gnucash" VERSION="2.2.9" HOMEPAGE="http://www.gnucash.org/" DOWNLOAD="http://downloads.sourceforge.net/gnucash/gnucash-2.2.9.tar.bz2" -MD5SUM="1d814de8673b4760045bf51b72924d04" DOWNLOAD_x86_64="" +MD5SUM="1d814de8673b4760045bf51b72924d04" MD5SUM_x86_64="" MAINTAINER="Vincent Batts" EMAIL="vbatts@hashbangbash.com" |