diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-14 20:33:11 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-14 20:33:11 +0000 |
commit | ca8c504a47e24fbb79aff25377df3b04f9f7f869 (patch) | |
tree | 97b0282675d45e49dd84fa975c3d781a1096215d | |
parent | c3909275374ed921a3227fc84b5b9f16a5c07e82 (diff) | |
download | aports-ca8c504a47e24fbb79aff25377df3b04f9f7f869.tar.bz2 aports-ca8c504a47e24fbb79aff25377df3b04f9f7f869.tar.xz |
x11/swfdec-mozilla: new aport
free plugin for Mozilla browsers that uses the Swfdec library for playing
SWF files
http://swfdec.freedesktop.org
-rw-r--r-- | x11/swfdec-mozilla/APKBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/x11/swfdec-mozilla/APKBUILD b/x11/swfdec-mozilla/APKBUILD new file mode 100644 index 000000000..b2409e8da --- /dev/null +++ b/x11/swfdec-mozilla/APKBUILD @@ -0,0 +1,22 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=swfdec-mozilla +pkgver=0.8.2 +pkgrel=0 +pkgdesc="free plugin for Mozilla browsers that uses the Swfdec library for playing SWF files" +url="http://swfdec.freedesktop.org" +license="LGPL" +makedepends="swfdec-dev" +depends= +source="http://swfdec.freedesktop.org/download/$pkgname/0.8/$pkgname-$pkgver.tar.gz" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-static \ + --with-plugin-dir=/usr/lib/mozilla/plugins/ + make || return 1 + make DESTDIR="$pkgdir" install +} + +md5sums="716632e0d35b3c1582c180569ba30346 swfdec-mozilla-0.8.2.tar.gz" |