summaryrefslogtreecommitdiff
path: root/pcr/idjc
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-08-29 09:57:59 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-08-29 09:57:59 -0300
commit0b1f916eefc5e12d52c0e9b52d9c1505b0748dfd (patch)
treee875962cde80d97c8cc5afcca0f3516a6c17c35b /pcr/idjc
parentb012f2223e36d82c66af88a5b7ea623d9c5eb6cd (diff)
idjc upgrade
Diffstat (limited to 'pcr/idjc')
-rw-r--r--pcr/idjc/PKGBUILD26
1 files changed, 16 insertions, 10 deletions
diff --git a/pcr/idjc/PKGBUILD b/pcr/idjc/PKGBUILD
index 0de01f4e3..6834d64a6 100644
--- a/pcr/idjc/PKGBUILD
+++ b/pcr/idjc/PKGBUILD
@@ -1,35 +1,41 @@
+# Maintainer: M0Rf30
# Contributor: Tobias Luther <tobias [at] tonstrom [dot] de>
# Contributor: GraveDigger
# Contributor: Gaetan Bisson <bisson@archlinux.org>
pkgname=idjc
-pkgver=0.8.8
-pkgrel=1
+pkgver=0.8.9
+pkgrel=2
pkgdesc='Powerful yet easy-to-use source-client for individuals interested in streaming live radio shows over the Internet'
url='http://idjc.sourceforge.net/'
license=('GPL2')
arch=('i686' 'x86_64')
-#depends=('python2' 'jack' 'pygtk' 'lame' 'mutagen' 'flac' 'faad2' 'libsamplerate' 'vorbis-tools' 'libsndfile' 'ffmpeg' 'libmad' 'speex' 'dbus-python' 'imagemagick' 'twolame' 'libshout-idjc-git' 'mpg123')
-depends=('desktop-file-utils' 'python2' 'dbus-python' 'mutagen' 'jack' 'pygtk' 'vorbis-tools' 'libsndfile' 'libsamplerate' 'glib2' 'lame' 'libmad' 'ffmpeg' 'flac' 'speex' 'libshout-idjc')
+depends=('desktop-file-utils' 'python2' 'dbus-python' 'mutagen' 'jack' 'pygtk' 'vorbis-tools' 'libsndfile' 'libsamplerate' 'glib2' 'lame' 'libmad' 'ffmpeg-compat' 'flac' 'speex' 'libshout-idjc')
optdepends=('patchage' 'qjackctl')
makedepends=('pkgconfig')
install=${pkgname}.install
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('a14ce4cc8c789fce55c7b98081743a4a')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr PYTHON="/usr/bin/python2" --disable-libav
-
- make PYTHON="/usr/bin/python2"
-
+ export PYTHON=/usr/bin/python2
+ PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig"
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --disable-static
+# --disable-libav
+
+ make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" PYTHON="/usr/bin/python2" install
+ make DESTDIR="${pkgdir}" install
sed -i 's|#! /usr/bin/python22.7|#! /usr/bin/python2|' ${pkgdir}/usr/bin/idjc
}
+
+md5sums=('99abfe98f13170ab6b1ed17a8f1632e1')