Advertisement
Guest User

PKGBUILD

a guest
Oct 5th, 2017
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.74 KB | None | 0 0
  1. # Contributor: Jishnu Mohan jishnu7 at gmail dot com
  2.  
  3. pkgname=quilter
  4. pkgver=1.3.5
  5. pkgrel=1
  6. pkgdesc="Focus on your writing for any kind of story, even longer ones."
  7. arch=(any)
  8. url="https://github.com/lainsce/quilter"
  9. depends=(granite gtksourceview3 gtk3 glib2 vala discount webkit2gtk)
  10. makedepends=(unzip ninja meson)
  11. install=quilter.install
  12.  
  13. source=(
  14.   "https://github.com/lainsce/quilter/archive/${pkgver}.zip"
  15. )
  16. sha256sums=('dc7d95566250ed0d533744162717884eff7c185086f213308220c3463a41bb1b')
  17.  
  18. build () {
  19.   cd $srcdir/$pkgname-$pkgver
  20.   sed -i '/libmarkdown.vapi/d' meson.build
  21.   meson build && cd build
  22.   mesonconf -Dprefix=${pkgdir}/usr
  23. }
  24.  
  25. package() {
  26.   cd $srcdir/$pkgname-$pkgver/build
  27.   DESTDIR="$pkgdir" ninja install
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement