summaryrefslogtreecommitdiff
path: root/community/xwax
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-12-07 17:00:41 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-12-07 17:00:41 -0300
commit3734b1ff855a5738195c6ff3def244d7b2e23e50 (patch)
treea4afb881617539f17c75b0ddc58902569d847809 /community/xwax
parentd4eb5f4f523f90878c8d5ab59e6012ca401ca355 (diff)
parent7de07e40e2c0c078a35c5092e1f2defb65d1741e (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/znc/PKGBUILD extra/hugin/PKGBUILD extra/kdeplasma-addons/PKGBUILD extra/postgresql/PKGBUILD extra/talloc/PKGBUILD
Diffstat (limited to 'community/xwax')
-rw-r--r--community/xwax/PKGBUILD13
1 files changed, 5 insertions, 8 deletions
diff --git a/community/xwax/PKGBUILD b/community/xwax/PKGBUILD
index b5583dc3d..202946c61 100644
--- a/community/xwax/PKGBUILD
+++ b/community/xwax/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 68434 2012-03-24 14:05:02Z lfleischer $
+# $Id: PKGBUILD 80901 2012-12-06 09:48:40Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: sputnick <gilles DOT quenot AT gmail DOT com>
pkgname=xwax
-pkgver=1.2
+pkgver=1.3
pkgrel=1
pkgdesc='Open-source vinyl emulation software for Linux.'
arch=('i686' 'x86_64' 'mips64el')
@@ -14,7 +14,7 @@ optdepends=('cdparanoia: for CD import'
'mpg123: for MP3 import'
'ffmpeg: for video fallback import')
source=("http://www.xwax.co.uk/releases/${pkgname}-${pkgver}.tar.gz")
-md5sums=('3be17f0021a791b52c7d097c6a686722')
+md5sums=('10c3b923eab17377705b1dea89edf6fb')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -22,14 +22,11 @@ build() {
# patch "rig.c" to use Arch Linux's default rtprio value
sed -i 's/^#define REALTIME_PRIORITY 80/#define REALTIME_PRIORITY 65/' rig.c
- # patch installation path for "xwax-scan" and "xwax-import"
- sed -i "s#^EXECDIR = \$(PREFIX)/libexec#EXECDIR = \$(PREFIX)/share/${pkgname}#" Makefile
-
./configure --enable-alsa --prefix /usr
- make
+ make EXECDIR="/usr/share/${pkgname}"
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make PREFIX="${pkgdir}/usr" install
+ make DESTDIR="${pkgdir}" EXECDIR="/usr/share/${pkgname}" install
}