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

Untitled

By: a guest on Dec 15th, 2010  |  syntax: Bash  |  size: 0.86 KB  |  hits: 131  |  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. pkgname=indicator-sound
  2. pkgver=0.5.2
  3. pkgrel=2
  4. pkgdesc="A small applet to display sound information in the panel. (Canonical Ayatana Project)"
  5. arch=('i686' 'x86_64')
  6. url="http://launchpad.net/indicator-sound"
  7. license=('GPL')
  8. depends=('gconf' 'gnome-panel' 'indicator-application' 'ido' 'libgee' 'vala-devel>=0.11.2')
  9. makedepends=()
  10. source=(http://archive.ubuntu.com/ubuntu/pool/main/i/indicator-sound/indicator-sound_${pkgver}.orig.tar.gz
  11. http://archive.ubuntu.com/ubuntu/pool/main/i/indicator-sound/indicator-sound_${pkgver}-0ubuntu2.diff.gz)
  12. md5sums=('bce565c862873953c137354c33d71ed2'
  13.          '0e68d4e44acc14439d31b4a1b006454e')
  14.  
  15. build() {
  16.   cd "$srcdir"/$pkgname-$pkgver
  17.   patch -Np1 -i ../indicator-sound_${pkgver}-0ubuntu2.diff
  18.   ./configure --prefix=/usr --disable-static || return 1
  19.   make || return 1
  20.   make DESTDIR="$pkgdir" install || return 1
  21. }