updated on Tue Jan 10 00:10:07 UTC 2012
[aur-mirror.git] / ihu / PKGBUILD
blobfdcc1a83e904cb69859aa0f9c3662823d2c11f94
1 # Contributor: Darwin Bautista <djclue917@gmail.com>
3 pkgname=ihu
4 pkgver=0.6.0
5 pkgrel=1
6 pkgdesc="I Hear U is a VoIP application that creates an audio stream between two computers easily"
7 arch=('i686' 'x86_64')
8 url="http://ihu.sourceforge.net/"
9 license=('GPL')
10 depends=('alsa-lib' 'gmp' 'qt3' 'speex')
11 makedepends=('soundtouch')
12 source=(http://downloads.sourceforge.net/sourceforge/ihu/ihu-${pkgver}.tar.gz \
13         ihu.desktop \
14         ihu.1)
15 md5sums=('ab567c5d2d9f83788ec95f08098ebe58'
16          'ab8afc11d6d71b5497cb4c8996340ddb'
17          'df7e3be9e98ba0eaba5e70d70d964ed9')
19 build() {
20   cd ${startdir}/src/${pkgname}-${pkgver}/
22   # Source the QT3 profile
23   source /etc/profile.d/qt3.sh
25   ./configure --prefix=/usr --disable-debug --disable-jack
26   make || return 1
27   make DESTDIR=${startdir}/pkg install
29   # Install icon and shortcut
30   install -D -m644 icon/ihu.png ${startdir}/pkg/usr/share/pixmaps/ihu.png
31   install -D -m644 ${startdir}/src/ihu.desktop ${startdir}/pkg/usr/share/applications/ihu.desktop
33   # Install manpage
34   install -D -m644 ${startdir}/src/ihu.1 ${startdir}/pkg/usr/share/man/man1/ihu.1
37 # vim:set ts=2 sw=2 et: