Guest User

Arch Linux - AUR - PKGBUILD - flwrap

a guest
Aug 4th, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.97 KB | None | 0 0
  1. # Maintainer: Tim Cassels <cassels2025@gmail.com>
  2. # Contributor: GI_Jack <GI_Jack@hackermail.com>
  3.  
  4. pkgname=flwrap
  5. pkgver=1.3.5
  6. pkgrel=1
  7. pkgdesc="file encapsulation / compression for fldigi"
  8. arch=("x86_64")
  9. url="http://www.w1hkj.com/"
  10. license=("gpl")
  11. depends=("fltk" "libxrender" "libxcursor" "libxext" "libxft" "fontconfig"
  12.      "libxinerama" "libx11" "freetype2" "expat" "libxcb" "zlib" "bzip2"
  13.      "libpng" "harfbuzz" "libxau" "libxdmcp" "graphite" "pcre")
  14. optdepends=()
  15. source=("http://www.w1hkj.com/files/flwrap/$pkgname-$pkgver.tar.gz")
  16. sha256sums=('efde2b3011c4394cccf046ce8b3f3b7360e1a7eb809c42e4796cab3c27de1163')
  17.  
  18. package() {
  19.   cd "${srcdir}/$pkgname-$pkgver"
  20.   install -Dm755 src/$pkgname "${pkgdir}/usr/bin/$pkgname"
  21.   install -Dm644 data/$pkgname.desktop "${pkgdir}/usr/share/applications/$pkgname.desktop"
  22.   install -Dm644 data/$pkgname.xpm "${pkgdir}/usr/share/icons/$pkgname.xpm"
  23. }
  24.  
  25. build() {
  26.   cd "${srcdir}/$pkgname-$pkgver"
  27.   ./configure
  28.   make
  29. }
  30.  
Add Comment
Please, Sign In to add comment