diff options
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} \ |