mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
graphics/goocanvas: Updated for bash4.
This commit is contained in:
parent
607a5c6b00
commit
8e2cce9731
3 changed files with 16 additions and 9 deletions
|
@ -1,2 +1,5 @@
|
|||
GooCanvas is a canvas widget for GTK+ that uses the cairo 2D library for drawing.
|
||||
|
||||
Requires: (included in slackware)
|
||||
gtk+2
|
||||
cairo
|
||||
|
|
|
@ -21,10 +21,17 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Change Log
|
||||
#
|
||||
# Mar 3rd, 2010
|
||||
# *Revised to build "2" - fixed the "strip" for bash 4 compatability
|
||||
# and removed the man page section
|
||||
#
|
||||
|
||||
PRGNAM=goocanvas
|
||||
VERSION=0.14
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
|
@ -77,16 +84,13 @@ make install DESTDIR=$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
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
|
||||
cd $TMP/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
|
|
|
@ -7,4 +7,4 @@ DOWNLOAD_x86_64=""
|
|||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Jonathan Larsen"
|
||||
EMAIL="agentc0re@learnix.net"
|
||||
APPROVED="michiel"
|
||||
APPROVED="dsomero"
|
||||
|
|
Loading…
Reference in a new issue