diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libvisual-projectm |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libvisual-projectm')
-rw-r--r-- | community/libvisual-projectm/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/community/libvisual-projectm/PKGBUILD b/community/libvisual-projectm/PKGBUILD new file mode 100644 index 000000000..ea201188d --- /dev/null +++ b/community/libvisual-projectm/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 61634 2009-12-20 18:27:47Z andrea $ +# Contributor: Alexander Baldeck <alexander@archlinux.org> + +pkgname=libvisual-projectm +pkgver=2.0.1 +pkgrel=1 +pkgdesc="ProjectM XMMS plugin" +arch=('i686' 'x86_64') +url="http://projectm.sourceforge.net/" +license=('GPL') +depends=('projectm>=2.0.1' 'libvisual' 'sdl') +makedepends=('pkgconfig' 'cmake' 'libxext') +options=('!libtool') +source=(http://downloads.sourceforge.net/projectm/projectM_libvisual-${pkgver}-Source.tar.gz) +md5sums=('35e09b09210d48b437e3574bd00b15a8') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../projectM_libvisual-${pkgver}-Source \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release || return 1 + make || return + make DESTDIR=${pkgdir} install || return +} |