summaryrefslogtreecommitdiff
path: root/libre/audacious-plugins-libre/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libre/audacious-plugins-libre/PKGBUILD')
-rw-r--r--libre/audacious-plugins-libre/PKGBUILD11
1 files changed, 6 insertions, 5 deletions
diff --git a/libre/audacious-plugins-libre/PKGBUILD b/libre/audacious-plugins-libre/PKGBUILD
index d024c42d0..5f3c0e327 100644
--- a/libre/audacious-plugins-libre/PKGBUILD
+++ b/libre/audacious-plugins-libre/PKGBUILD
@@ -19,8 +19,8 @@ arch=('i686' 'x86_64' 'mips64el')
# The plugins 'scrobbler', stereoplugin', 'wavepack' and 'plugin_echo' have no license notice
# but I've been informed by an upstream dev, nenolod, that they are all GPL. I don't know what version
#
-# The plugin 'psf' is currently (Nov 2011) BSD+noncommercial, but is apparently being changed to GPL.
-# However, 'psf' is apparently an emulator for running non-free code, so I'm not rushing to fix it.
+# The plugin 'psf' is under BSD license, mostly, but it uses code from PeOPS, so it's probably GPL.
+# However, 'psf' is apparently an emulator for running nonfree code, so I'm not rushing to fix it.
#
# All the other custom licensed plugins I think are mostly modified BSD or ISC.
@@ -64,11 +64,12 @@ source=("http://distfiles.audacious-media-player.org/${_pkgname}-${pkgver}.tar.b
sha1sums=('bcccd4304692a62d1b7963322f64059a0fb9532a')
prepare() {
- # Retrieve upstream & remove plugin 'psf' due to issues mentioned above.
- sed -i s/enable_psf=yes/enable_psf=no/ ${_pkgname}-$pkgver/configure
-
cd "${srcdir}/${_pkgname}-${pkgver}"
+ # Retrieve upstream & remove plugin 'psf' due to issues mentioned above.
+ rm -rv src/psf
+ sed -i s/enable_psf=yes/enable_psf=no/ configure
+
# Get license notices out of custom-licensed packages
cd src
tmpdir=$(mktemp -d /tmp/${_pkgname}-${pkgver}-XXXX)