summaryrefslogtreecommitdiffstats
path: root/base/cdparanoia/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'base/cdparanoia/Pkgfile')
-rw-r--r--base/cdparanoia/Pkgfile11
1 files changed, 8 insertions, 3 deletions
diff --git a/base/cdparanoia/Pkgfile b/base/cdparanoia/Pkgfile
index d7c662f24..59fdf931f 100644
--- a/base/cdparanoia/Pkgfile
+++ b/base/cdparanoia/Pkgfile
@@ -6,7 +6,7 @@
name=cdparanoia
version=10.2
-release=3
+release=4
source=(http://downloads.xiph.org/releases/cdparanoia/$name-III-$version.src.tgz\
cdparanoia-gcc43.patch)
@@ -15,6 +15,11 @@ build() {
patch -Np1 -i ../cdparanoia-gcc43.patch
./configure --prefix=/usr \
--mandir=/usr/share/man
- make
- make prefix=$PKG/usr MANDIR=$PKG/usr/share/man install
+
+ # cdparanoia ne supporte pas la parallelisation paramétrée dans pkgmk.conf
+ _MAKE=MAKEFLAGS
+ export MAKEFLAGS='-j 1'
+ make
+ make prefix=$PKG/usr MANDIR=$PKG/usr/share/man install
+ export MAKEFLAGS= _MAKE
}