Advertisement
Guest User

Untitled

a guest
Dec 1st, 2024
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # Maintainer: twa022 <twa022 at gmail dot com>
  2. # Contributor: Luna Jernberg <droidbittin at gmail dot com>
  3.  
  4. _pkgname=garcon
  5. pkgname=${_pkgname}-devel
  6. pkgver=4.19.3
  7. pkgrel=1
  8. pkgdesc="Implementation of the freedesktop.org menu specification"
  9. arch=('i686' 'x86_64' 'armv7h' 'aarch64')
  10. url="https://docs.xfce.org/xfce/tumbler/start"
  11. license=('LGPL')
  12. groups=('xfce4-devel')
  13. depends=('libxfce4ui')
  14. makedepends=('python' 'gobject-introspection')
  15. replaces=('libxfce4menu')
  16. provides=("${_pkgname}=${pkgver}")
  17. conflicts=("${_pkgname}")
  18. source=("https://archive.xfce.org/src/xfce/garcon/${pkgver%.*}/$_pkgname-$pkgver.tar.bz2")
  19. sha256sums=('21e3f6abcd2ee20aa8bbe8f2e3fa7abc553c45a2df9dddb45a7188ff35aeb528')
  20.  
  21. build() {
  22. cd "${_pkgname}-${pkgver}"
  23.  
  24. ./configure \
  25. --prefix=/usr \
  26. --sysconfdir=/etc \
  27. --libexecdir=/usr/lib \
  28. --localstatedir=/var \
  29. --disable-static \
  30. --disable-debug
  31. make
  32. }
  33.  
  34. package() {
  35. cd "${_pkgname}-${pkgver}"
  36. make DESTDIR="${pkgdir}" install
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement