diff options
author | root <root@rshg054.dnsready.net> | 2013-05-02 00:37:30 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-05-02 00:37:30 -0700 |
commit | 8b09f76ed1ea968a2473faf8f56250eea0fdc3cc (patch) | |
tree | 8eca788d6ba23cad66a3cf81ec9b2cea43fcc484 /pcr/lightspark/PKGBUILD | |
parent | 1b05006cb143959d080a200fe11891c9f5caf32c (diff) |
Thu May 2 00:37:29 PDT 2013
Diffstat (limited to 'pcr/lightspark/PKGBUILD')
-rw-r--r-- | pcr/lightspark/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pcr/lightspark/PKGBUILD b/pcr/lightspark/PKGBUILD new file mode 100644 index 000000000..bab26aceb --- /dev/null +++ b/pcr/lightspark/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer : speps <speps at aur dot archlinux dot org> +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> + +pkgname=lightspark +pkgver=0.7.2 +pkgrel=1 +pkgdesc='An alternative Flash Player for GNU/Linux.' +arch=('i686' 'x86_64' 'mips64el') +url='http://lightspark.sourceforge.net' +license=('GPL3' 'LGPL3') +depends=('gtk2' 'ffmpeg' 'glew' 'curl' 'boost-libs' 'libxml++' 'desktop-file-utils' 'hicolor-icon-theme') +makedepends=('cmake' 'nasm' 'xulrunner' 'llvm' 'glproto' 'boost' 'fontconfig') +optdepends=('gnash-gtk: fallback support') +install="$pkgname.install" +source=(http://launchpad.net/lightspark/trunk/lightspark-$pkgver/+download/lightspark-$pkgver.tar.gz{,.asc}) +md5sums=('f078d505a354fb66dc5b68ad09a2aa81' + 'SKIP') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + [ -d bld ] || mkdir bld && cd bld + cmake .. -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DGNASH_EXE_PATH=/usr/bin/gtk-gnash + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver/bld" + make DESTDIR="$pkgdir/" install +} |