alure: removed as obsolete, FS#1865

This commit is contained in:
Neofytos Kolokotronis 2017-02-25 17:36:46 +01:00
parent a4082f032b
commit 3bb0a92aef

View File

@ -1,43 +0,0 @@
#
# Platform Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
pkgname=alure
pkgver=1.2
pkgrel=2
pkgdesc="Utility library to help manage common tasks with OpenAL applications."
arch=('i686' 'x86_64')
url="http://kcat.strangesoft.net/alure.html"
license=('MIT')
depends=('openal')
makedepends=('cmake' 'libsndfile' 'libvorbis' 'flac' 'mpg123' 'fluidsynth')
optdepends=('libsndfile: for uncompressed audio support'
'libvorbis: for OGG Vorbis support'
'flac: for FLAC support'
'mpg123: for MPEG support'
'fluidsynth: for SoundFont 2 support')
source=(http://kcat.strangesoft.net/alure-releases/alure-${pkgver}.tar.bz2
http://patch-tracker.debian.org/patch/series/dl/alure/1.2-6/fix-build-with-gcc-4.7.patch)
md5sums=('3088aba074ad02d95ea51e705053b9f5'
'889f1d1bd871f15f7511f1308f1720e0')
build() {
cd $srcdir/$pkgname-$pkgver
# Patches.
patch -uN src/codec_fluidsynth.cpp $srcdir/fix-build-with-gcc-4.7.patch
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
.
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
# License.
install -Dm0644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
}