Advertisement
Guest User

dot-editor PKGBUILD

a guest
Mar 11th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. # Maintainer: Felix Yan <felixonmars@archlinux.org>
  2.  
  3. pkgname=dot-editor
  4. pkgver=1.1.4
  5. pkgrel=1
  6. pkgdesc="The application, among other things, act as a graphical interface for the popular graphviz package. More generally, it is able to display the output of any text-based program that produces graphic files as output."
  7. arch=('i686' 'x86_64')
  8. url="https://sites.google.com/site/doteditorhome/"
  9. license=('')
  10. depends=('qt5-base' 'libx11' 'libpng' 'harfbuzz' 'libgl' 'icu' 'libffi' 'graphite')
  11. makedepends=('bzip2' 'cmake')
  12. options=('!emptydirs')
  13. source=("https://github.com/TNick/dot-editor/archive/$pkgver.tar.gz")
  14. md5sums=('e85f18dd5376fc1f54e933fa801d4650')
  15.  
  16. build() {
  17. cd ${srcdir}/${pkgname}-${pkgver}
  18. cmake . -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" -DCMAKE_BUILD_TYPE=Release
  19. make
  20. }
  21.  
  22. package() {
  23. cd ${srcdir}/${pkgname}-${pkgver}
  24. make install
  25. install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement