Advertisement
Guest User

solstice

a guest
Jul 9th, 2010
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. # Contributor: solsTiCe d'Hiver <solstice.dhiver@gmail.com>
  2.  
  3. pkgname=pastebinit
  4. pkgver=1.1
  5. pkgrel=0
  6. pkgdesc="A software that lets you send anything you want directly to a pastebin from the command line"
  7. arch=(any)
  8. url="http://launchpad.net/pastebinit"
  9. license=("GPL")
  10. depends=("python")
  11. makedepends=("asciidoc")
  12. source=(http://launchpad.net/pastebinit/trunk/$pkgver/+download/pastebinit-$pkgver.tar.gz)
  13.  
  14. build() {
  15. cd $startdir/src/$pkgname-$pkgver
  16. mkdir -p $pkgdir/usr/{bin,share/man/man1,share/locale} $pkgdir/etc
  17. install -m 755 pastebinit $pkgdir/usr/bin
  18. cp -a pastebin.d $pkgdir/etc
  19. a2x -f manpage pastebinit.xml
  20. install -m 644 pastebinit.1 $pkgdir/usr/share/man/man1
  21. cd po
  22. make
  23. cp -a mo/* $pkgdir/usr/share/locale
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement