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

recipes/utils/swig/PAGBUILD.yaml main

30 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930
pkgname: swig
pkgver: '4.5.0'
pkgrel: '1'
pkgdesc: 'SWIG Simplified Wrapper and Interface Generator'
url: 'https://www.swig.org/'
arch: x86_64
depends: []
makedepends:
- pcre2

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

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  ./configure --prefix=/usr \
  --without-clisp \
  --without-maximum-compile-warnings
  make
  make DESTDIR=${PKGDIR} install
  install -v -m755 -d ${PKGDIR}/usr/share/doc/${pkgname}-${pkgver}
  cp -v -R Doc/* \
  ${PKGDIR}/usr/share/doc/${pkgname}-${pkgver}
  install -D -m644 LICENSE ${PKGDIR}/usr/share/licenses/${pkgname}/LICENSE

package: |
  true