diff options
author | Diogo Leal <diogo@diogoleal.com> | 2011-06-26 08:03:39 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-07-14 21:54:01 -0300 |
commit | 7c1ab7d3eaae62b931ac9c8bcb84caf5e78a4f9e (patch) | |
tree | 6fe573524a4d73a0b8ea78ed72f3755876f9dc67 /multimedia/exaile/exaile.SlackBuild | |
parent | 26af8032cb942174e50f2bb686609daf9e7e8e4d (diff) | |
download | slackbuilds-7c1ab7d3eaae62b931ac9c8bcb84caf5e78a4f9e.tar.gz |
multimedia/exaile: Updated for version 0.3.2.1.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'multimedia/exaile/exaile.SlackBuild')
-rw-r--r-- | multimedia/exaile/exaile.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/multimedia/exaile/exaile.SlackBuild b/multimedia/exaile/exaile.SlackBuild index 49846d6aec..2f4fa492f0 100644 --- a/multimedia/exaile/exaile.SlackBuild +++ b/multimedia/exaile/exaile.SlackBuild @@ -5,7 +5,7 @@ # Update by Diogo Leal (diogo@diogoleal.com) PRGNAM=exaile -VERSION=${VERSION:-0.3.2.0} +VERSION=${VERSION:-0.3.2.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -40,7 +40,6 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION - chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -48,6 +47,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Fix manpage location. +sed -i -e 's|share/man|man|g' Makefile + make PREFIX=/usr \ LIBINSTALLDIR=/lib${LIBDIRSUFFIX} \ |