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

recipes/utils/joe/PAGBUILD.yaml main

31 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031
pkgname: joe
pkgver: '4.8'
pkgrel: '2'
pkgdesc: 'Joe''s own editor'
url: 'https://joe-editor.sourceforge.net/'
arch: x86_64
depends: []
makedepends:
- gpm

source:
- 'https://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}

  ./configure --prefix=/usr \
  --sysconfdir=/etc/joe \
  --mandir=/usr/share/man \
  --docdir=/usr/share/doc/${pkgname}-${pkgver}
  make
  make DESTDIR=${PKGDIR} install

  install -vm 755 joe/util/{stringify,termidx,uniproc} \
  ${PKGDIR}/usr/bin 

package: |
  true