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

Untitled

By: a guest on Oct 19th, 2010  |  syntax: Bash  |  size: 0.64 KB  |  hits: 56  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Maintainer: genisis300 <matthew [dot] horsell [at] googlemail [dot] com>
  2.  
  3. pkgname=ob-autostart
  4. pkgver=1
  5. pkgrel=1
  6. pkgdesc="A simple autostart application for Openbox"
  7. arch=('i686' 'x86_64')
  8. url="http://crunchbanglinux.org/forums/topic/2614/"
  9. license=('GPL2')
  10. depends=('python2' 'pygtk')
  11. source=(http://www.ad-comp.be/public/projets/$pkgname/$pkgname
  12.         ob-autostart-python2.patch)
  13. md5sums=('9ee169d91f35561c64d04dfb4f385f0b'
  14.          '420af565f48a5c752f4f3fcb35ba09d8')
  15.  
  16. build() {
  17.   cd "$srcdir"
  18.   patch -Np1 -i "$srcdir/ob-autostart-python2.patch"
  19.   mkdir -p "$pkgdir/usr/bin/"
  20.   install -m 755 $pkgname $pkgdir/usr/bin/$pkgname
  21. }