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

recipes/gui/gvim/PAGBUILD.yaml main

35 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829303132333435
pkgname: gvim
pkgver: '9.2.1001'
pkgrel: 1
pkgdesc: GTK version of the vim editor
url: 'https://www.vim.org/'
arch: x86_64
license:
- 'custom:VIM'
depends:
- vim
makedepends:
- vim
- gtk3
- xorg-libxt
source:
- 'https://github.com/vim/vim/archive/v${pkgver}/vim-${pkgver}.tar.gz'
sha256sums:
- SKIP
build: |
  cd vim-${pkgver}/src

  ./configure --prefix=/usr \
              --with-features=huge \
              --with-vim-name=gvim \
              --enable-gui=gtk3 \
              --with-tlib=ncursesw

  make
  make runtime
  make DESTDIR=${PKGDIR} installvimbin
  make DESTDIR=${PKGDIR} install-icons

  install -Dm644 ../LICENSE ${PKGDIR}/usr/share/licenses/${pkgname}/LICENSE
package: |
  true