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

recipes/gui/assimp/PAGBUILD.yaml main

31 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031
pkgname: assimp
pkgver: '6.0.5'
pkgrel: '1'
pkgdesc: Portable Open Source library to import various well-known 3D model formats in an uniform manner
url: 'http://assimp.sourceforge.net/index.html'
arch: x86_64
license:
- BSD
depends: []
makedepends:
- cmake
- boost
- ninja
source:
- 'https://github.com/assimp/assimp/archive/v${pkgver}.tar.gz'
sha256sums:
- edf3749559c2b7d1f758ffb66fc5bec62186221e623b7f2e8969f17ee46ecb6f
build: |
  cd ${pkgname}-${pkgver}
  mkdir build && cd build
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
     -DCMAKE_BUILD_TYPE=Release \
     -DASSIMP_BUILD_SAMPLES=OFF \
     -DASSIMP_WARNINGS_AS_ERRORS=OFF \
     -Wno-dev -G Ninja ..
  ninja
  DESTDIR=${PKGDIR} ninja install

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