mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
711 B
Bash
21 lines
711 B
Bash
#$Id: PKGBUILD 17045 2008-10-24 16:02:11Z andyrtr $
|
|
#Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
pkgname=swfdec-mozilla
|
|
pkgver=0.8.2
|
|
pkgrel=1
|
|
pkgdesc="free plugin for Mozilla browsers that uses the Swfdec library for playing SWF files"
|
|
arch=('i686' 'x86_64')
|
|
url="http://swfdec.freedesktop.org"
|
|
license=('LGPL')
|
|
depends=("swfdec>=$pkgver")
|
|
source=(http://swfdec.freedesktop.org/download/swfdec-mozilla/0.8/${pkgname}-${pkgver}.tar.gz)
|
|
options=('!libtool')
|
|
md5sums=('716632e0d35b3c1582c180569ba30346')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static --with-plugin-dir=/usr/lib/mozilla/plugins/
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|