diff options
Diffstat (limited to 'multilib/nspluginwrapper/PKGBUILD')
-rw-r--r-- | multilib/nspluginwrapper/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/multilib/nspluginwrapper/PKGBUILD b/multilib/nspluginwrapper/PKGBUILD index 7e9d8b5fe..d02b29590 100644 --- a/multilib/nspluginwrapper/PKGBUILD +++ b/multilib/nspluginwrapper/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 60061 2011-12-04 15:24:45Z bluewind $ +# $Id: PKGBUILD 62211 2012-01-18 10:47:40Z heftig $ # Maintainer: Thomas Bächler <thomas@archlinux.org> pkgname=nspluginwrapper pkgver=1.4.4 -pkgrel=2 +pkgrel=2.1 pkgdesc="Cross-platform NPAPI compatible plugin viewer" arch=('i686' 'x86_64') url="http://nspluginwrapper.davidben.net/" @@ -15,8 +15,10 @@ depends=( ) makedepends=('gcc-multilib') install="install" -source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz) -md5sums=('36f3e290fc4ce56f65ee695078961188') +source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz + 'fix_missing_lib.patch') +md5sums=('36f3e290fc4ce56f65ee695078961188' + 'd40ad2f55d9989e04e3ef0cf4326b1df') if [[ $CARCH == i686 ]]; then # Strip lib32 etc. on i686 @@ -29,6 +31,8 @@ fi build() { cd "$srcdir/$pkgname-$pkgver" + patch -p0 -i "$srcdir/fix_missing_lib.patch" + configure_args="" if [[ $CARCH == x86_64 ]]; then configure_args="$configure_args --with-lib32=lib32 --with-lib64=lib" |