diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-03-19 06:12:32 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-03-19 06:12:32 -0500 |
commit | 6ba5e16ce6a30577092d84eb62bf9c916ecff6d3 (patch) | |
tree | 68e780e876c7e3a9b6dce9805f9608b5643212ac | |
parent | 777d007e9472ac7a93f8ecc6dfd9c85bf7f061b1 (diff) | |
download | abslibre-6ba5e16ce6a30577092d84eb62bf9c916ecff6d3.tar.gz abslibre-6ba5e16ce6a30577092d84eb62bf9c916ecff6d3.tar.bz2 abslibre-6ba5e16ce6a30577092d84eb62bf9c916ecff6d3.zip |
Removing openal-soft-tox. Use openal instead
-rw-r--r-- | pcr/openal-soft-tox/PKGBUILD | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/pcr/openal-soft-tox/PKGBUILD b/pcr/openal-soft-tox/PKGBUILD deleted file mode 100644 index c4daff121..000000000 --- a/pcr/openal-soft-tox/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: freaj <freaj@riseup.net> -# $Id: PKGBUILD 220461 2014-08-20 20:42:53Z heftig $ -# Maintainer (Arch): GI_Jack <iamjacksemail@hackermail.com> -# Contributor (Arch): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> -# Contributor (Arch): Allan McRae <allan@archlinux.org> -# Contributor (Arch): Jason Chu <jchu@xentac.net> - -# It should be noted that the tox developers think this package might break other openal -# installs, use with caution -# adds echo cancelation and a few other tox specific features. -# Contact NikolaiToryzin on Freenode IRC for questions - -_pkgname=openal -pkgname=openal-soft-tox -pkgver=r3453.b80570b -pkgrel=2 -pkgdesc="A cross-platform 3D audio library(patched for tox.im)" -arch=(i686 x86_64) -url="https://github.com/irungentoo/openal-soft-tox" -license=(LGPL) -depends=(glibc) -conflicts=$_pkgname -provides=$_pkgname -makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio git) -optdepends=('qt4: alsoft-config GUI Configurator' - 'fluidsynth: MIDI rendering') -source=($_pkgname::git+https://github.com/irungentoo/openal-soft-tox.git) -md5sums=('SKIP') - -build() { - cd $_pkgname/build - cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release .. - make -} -pkgver() { - cd $_pkgname - printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} -package() { - cd $_pkgname - make -C build DESTDIR="$pkgdir/" install - install -m644 -t "$pkgdir/usr/share/openal" env-vars.txt hrtf.txt -} - |