summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Demers2017-08-15 08:41:38 -0400
committerAlexandre Demers2017-08-15 08:41:38 -0400
commitaa75bb25023ecf3c29a60e6fd9a808ef26eb9ffd (patch)
tree9ef203cc0fc503c19c319837ffe0de5557c27efb
parent8623dbd22b21a1c2c465cda97bb5e6658ba4d73d (diff)
downloadaur-aa75bb25023ecf3c29a60e6fd9a808ef26eb9ffd.tar.gz
Fixed .SRCINFO and removed options already covered by makepkg's options
Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 3 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 32a08a764850..07939caa6609 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = lib32-libomxil-bellagio
pkgdesc = An opensource implementation of the OpenMAX Integration Layer API
pkgver = 0.9.3
- pkgrel = 1
+ pkgrel = 3
url = http://omxil.sourceforge.net
arch = x86_64
license = LGPL
diff --git a/PKGBUILD b/PKGBUILD
index 70d7bd5e0906..5258863dc14b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgbase=libomxil-bellagio
pkgname=lib32-$_pkgbase
pkgver=0.9.3
-pkgrel=2
+pkgrel=3
pkgdesc="An opensource implementation of the OpenMAX Integration Layer API"
arch=('x86_64')
url="http://omxil.sourceforge.net"
@@ -23,16 +23,13 @@ prepare() {
}
build() {
- _cpucount=$(grep -c processor /proc/cpuinfo 2>/dev/null)
- _jc=$((${_cpucount:-1}))
-
export CC="gcc -m32"
cd ${srcdir}/${_pkgbase}-${pkgver}
autoreconf -fiv
./configure --prefix=/usr --disable-static --libdir=/usr/lib32
- make -j $_jc
+ make -j
}
package() {