🔒 Repository is read-only – file editing is disabled.

recipes/gui/rxvt-unicode/PAGBUILD.yaml main

73 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
pkgname: 'rxvt-unicode'
pkgver: '9.31'
pkgrel: '4'
pkgdesc: 'An enhanced unicode capable version of the rxvt terminal emulator.'
url: 'https://software.schmorp.de/pkg/rxvt-unicode.html'
arch: x86_64
depends:
- 'startup-notification'

makedepends:
- 'gdk-pixbuf'
- perl
- 'xorg-libxt'
- 'xorg-libxft'
- libnsl
- libxcrypt
- 'startup-notification'
- libptytty

source:
- 'https://dist.schmorp.de/rxvt-unicode/Attic/${pkgname}-${pkgver}.tar.bz2'
- '${pkgname}.desktop'
- '${pkgname}.svg'
- 'perl-5.38.patch'

sha256sums:
- SKIP
- SKIP
- SKIP
- SKIP

build: |
  patch -d ${pkgname}-${pkgver} -p1 < perl-5.38.patch
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --localstatedir=/var \
              --enable-everything \
              --enable-unicode3 \
              --enable-combining \
              --enable-xft \
              --enable-font-styles \
              --enable-transparency \
              --enable-fading \
              --enable-frills \
              --enable-pixbuf \
              --enable-rxvt-scroll \
              --enable-next-scroll \
              --enable-xterm-scroll \
              --enable-perl \
              --enable-xim \
              --enable-iso14755 \
              --enable-keepscrolling \
              --enable-selectionscrolling \
              --enable-mousewheel \
              --enable-slipwheeling \
              --enable-smart-resize \
              --enable-text-blink \
              --enable-pointer-blank \
              --enable-unicode3 \
              --enable-256-color

  mkdir -p ${PKGDIR}/usr/share/terminfo
  TERMINFO=${PKGDIR}/usr/share/terminfo make install DESTDIR=${PKGDIR}

  # desktop intergration with icon from openclipart
  install -Dm 644 ./${pkgname}.desktop \
      ${PKGDIR}/usr/share/applications/${pkgname}.desktop
  install -Dm 644 ./${pkgname}.svg \
      ${PKGDIR}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg

package: |
  true