summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2016-03-19 05:45:37 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2016-03-19 05:45:37 -0500
commit9fc6eae940ad01b7d5a618feb84d9f1e84b6de2d (patch)
treee30b8bec6ac695d212ea4620e84398fbd1e8aedb /pcr
parent88e8169c698a6fa5e3b299b27d6e432fa3e829ce (diff)
downloadabslibre-9fc6eae940ad01b7d5a618feb84d9f1e84b6de2d.tar.gz
abslibre-9fc6eae940ad01b7d5a618feb84d9f1e84b6de2d.tar.bz2
abslibre-9fc6eae940ad01b7d5a618feb84d9f1e84b6de2d.zip
Removing filter_audio-git. Use libfilteraudio-git instead
Diffstat (limited to 'pcr')
-rw-r--r--pcr/filter_audio-git/COPYING29
-rw-r--r--pcr/filter_audio-git/PKGBUILD37
2 files changed, 0 insertions, 66 deletions
diff --git a/pcr/filter_audio-git/COPYING b/pcr/filter_audio-git/COPYING
deleted file mode 100644
index da40b336c..000000000
--- a/pcr/filter_audio-git/COPYING
+++ /dev/null
@@ -1,29 +0,0 @@
-Copyright (c) 2011, Google Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
- * Neither the name of Google nor the names of its contributors may
- be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/pcr/filter_audio-git/PKGBUILD b/pcr/filter_audio-git/PKGBUILD
deleted file mode 100644
index b0bf68577..000000000
--- a/pcr/filter_audio-git/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer (Arch): Ivan Shapovalov <intelfx100@gmail.com>
-
-pkgname=filter_audio-git
-pkgver=r38.ef3b724
-pkgrel=1
-pkgdesc="An easy to use audio filtering library made from webrtc code"
-arch=('i686' 'x86_64')
-url="https://github.com/irungentoo/filter_audio"
-license=('custom:BSD')
-makedepends=('git')
-provides=("filter_audio")
-conflicts=("filter_audio")
-source=("git://github.com/irungentoo/filter_audio.git"
- 'COPYING')
-sha512sums=('SKIP'
- '2e1adab66b8b286d6ac5a373808e3f2e3a00c981bbede4bda16576d091e7df306b92aa24a8f759f53e0efcf12ca86d46e8d02845fd83d763c30f6153ee91ef23')
-
-pkgver() {
- cd filter_audio
- printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
-}
-
-prepare() {
- cd filter_audio
- sed -e 's/lib64/lib/g' -i Makefile
-}
-
-build() {
- cd filter_audio
- make
-}
-
-package() {
- cd filter_audio
- make DESTDIR="$pkgdir" PREFIX="/usr" install
- install -Dm644 "$srcdir/COPYING" "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}