Don't like ads? PRO users don't see any ads ;-)
Guest

PKGBUILD for indicator-sound

By: a guest on Dec 18th, 2010  |  syntax: Bash  |  size: 0.93 KB  |  hits: 152  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Maintainer: Madek <gonzaloseguel@gmail.com>
  2.  
  3. pkgname=indicator-sound
  4. pkgver=0.5.3
  5. pkgrel=1
  6. _pkgrel='0ubuntu1'
  7. pkgdesc="A small applet to display sound information in the panel. (Canonical Ayatana Project)"
  8. arch=('i686' 'x86_64')
  9. url="http://launchpad.net/indicator-sound"
  10. license=('GPL')
  11. depends=('gconf' 'gnome-panel' 'indicator-application' 'ido' 'libgee' 'vala-devel>=0.11.2')
  12. makedepends=()
  13. source=(http://archive.ubuntu.com/ubuntu/pool/main/i/indicator-sound/indicator-sound_${pkgver}.orig.tar.gz
  14. http://archive.ubuntu.com/ubuntu/pool/main/i/indicator-sound/indicator-sound_${pkgver}-${_pkgrel}.diff.gz)
  15. md5sums=('1357935d46e6775428f36b986e013da8'
  16.          'fad6b186661d8d5236d0252d24a3abe9')
  17.  
  18. build() {
  19.   cd "$srcdir"/$pkgname-$pkgver
  20.   patch -Np1 -i ../indicator-sound_${pkgver}-${_pkgrel}.diff
  21.   ./configure --prefix=/usr --disable-static || return 1
  22.   make || return 1
  23.   make DESTDIR="$pkgdir" install || return 1
  24. }