Advertisement
Guest User

growl for linux

a guest
Apr 21st, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.68 KB | None | 0 0
  1. pkgname="growl-for-linux"
  2. pkgver=0.6.7
  3. pkgrel=1
  4. pkgdesc="Growl for Linux"
  5. url="http://mattn.github.com/growl-for-linux/"
  6. arch=('i686' 'x86_64')
  7. license=('BSD')
  8. depends=('git' 'openssl' 'curl' 'gtk2' 'sqlite3' 'dbus-glib' 'desktop-file-utils')
  9. optdepends=('libnotify')
  10. makedepends=()
  11. conflicts=('growl-for-linux-git')
  12. replaces=()
  13. backup=()
  14. options=('!libtool')
  15. source=(https://github.com/downloads/mattn/${pkgname}/${pkgname}-${pkgver}.tar.gz)
  16. md5sums=('3b1a326de57dbf4a9be1457a919dcb80')
  17.  
  18. build () {
  19.   cd "${srcdir}/${pkgname}-${pkgver}"
  20.   ./configure --prefix=/usr
  21.   make
  22. }
  23.  
  24. package () {
  25.   cd "${srcdir}/${pkgname}-${pkgver}"
  26.   make install DESTDIR="$pkgdir" prefix=/usr
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement