diff options
author | Iskar Enev <iskar.enev@gmail.com> | 2010-05-11 19:45:46 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 19:45:46 +0200 |
commit | bc4d120b005e50266720c18a2ea16460c3e34e01 (patch) | |
tree | bfb4dff72510bd54fa06be0dfe3e7f6ffc447f37 /network/aMule/aMule.SlackBuild | |
parent | 5fc3050a1ae09d707e8cdba55ac4475abedd686c (diff) | |
download | slackbuilds-bc4d120b005e50266720c18a2ea16460c3e34e01.tar.gz |
network/aMule: Updated for version 2.1.3
Diffstat (limited to 'network/aMule/aMule.SlackBuild')
-rw-r--r-- | network/aMule/aMule.SlackBuild | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/network/aMule/aMule.SlackBuild b/network/aMule/aMule.SlackBuild index 5379774667..9fe63a3449 100644 --- a/network/aMule/aMule.SlackBuild +++ b/network/aMule/aMule.SlackBuild @@ -28,7 +28,6 @@ cd $TMP || exit 1 rm -rf $PRGNAM-$VERSION tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 cd $PRGNAM-$VERSION || exit 1 - chown -R root:root . chmod -R u+w,go+r-w,a-s . @@ -36,7 +35,7 @@ chmod -R u+w,go+r-w,a-s . # It fixes the "crash on search tab close" which is an wxWidgets bug, # not an aMule bug, and it's fixed on the 2.8.0 version. # Patch provided by arekm <arekm@pld-linux.org> and approved by the -# aMule mainainer (see website) +# aMule maintainer (see website) #cat $CWD/aMule-wx2.80.patch | patch -p1 || exit 1 CFLAGS="$SLKCFLAGS" \ @@ -62,14 +61,9 @@ make install DESTDIR=$PKG || exit 1 for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) -# Let's fix the icon path in the menu entry so that the icon will show -# up when using KDE -sed -i 's@Icon=amule.xpm@Icon=/usr/share/pixmaps/amule.xpm@g' \ - $PKG/usr/share/applications/amule.desktop || exit 1 - # All of the needed docs are already installed; we'll just move them to the # correct location -cp -a $PKG/usr/share/doc $PKG/usr +mv $PKG/usr/share/doc $PKG/usr cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |