summaryrefslogtreecommitdiff
path: root/community/libreplaygain
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/libreplaygain
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/libreplaygain')
-rw-r--r--community/libreplaygain/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/libreplaygain/PKGBUILD b/community/libreplaygain/PKGBUILD
deleted file mode 100644
index 19505622d..000000000
--- a/community/libreplaygain/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 57695 2011-11-01 10:46:06Z andrea $
-# Maintainer:
-# Contributor: Corrado Primier <bardo@aur.archlinux.org>
-
-pkgname=libreplaygain
-pkgver=475
-pkgrel=1
-pkgdesc="A library to adjust audio gain"
-arch=('i686' 'x86_64')
-url="http://www.musepack.net/index.php?pg=src"
-license=('LGPL')
-depends=('glibc')
-makedepends=('cmake')
-source=("http://files.musepack.net/source/${pkgname}_r${pkgver}.tar.gz")
-md5sums=('e27b3b1249b7fbae92d656d9e3d26633')
-
-build() {
- cd "${srcdir}"
- mkdir build
- cd build
- cmake ../${pkgname}_r${pkgver}/ \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
- make
-}
-
-package() {
- cd "${srcdir}"/build
- make DESTDIR="${pkgdir}" install
-
- install -d "${pkgdir}/usr/include/replaygain/"
- install -Dm644 "${srcdir}"/${pkgname}_r${pkgver}/include/replaygain/* \
- "${pkgdir}/usr/include/replaygain/"
-}