[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)
Sven-Hendrik Haase
svenstaro at gemini.archlinux.org
Sun Oct 17 08:34:12 UTC 2021
Date: Sunday, October 17, 2021 @ 08:34:12
Author: svenstaro
Revision: 1030648
archrelease: copy trunk to community-x86_64
Added:
ogre/repos/community-x86_64/PKGBUILD
(from rev 1030647, ogre/trunk/PKGBUILD)
ogre/repos/community-x86_64/ogre.install
(from rev 1030647, ogre/trunk/ogre.install)
Deleted:
ogre/repos/community-x86_64/PKGBUILD
ogre/repos/community-x86_64/ogre.install
--------------+
PKGBUILD | 102 ++++++++++++++++++++++++++-------------------------------
ogre.install | 6 +--
2 files changed, 50 insertions(+), 58 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2021-10-17 08:34:01 UTC (rev 1030647)
+++ PKGBUILD 2021-10-17 08:34:12 UTC (rev 1030648)
@@ -1,55 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
-pkgname=ogre
-pkgver=13.0.1
-pkgrel=2
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'sdl2' 'glu' 'pugixml' 'zlib')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 'cppunit')
-install=ogre.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz"
- https://patch-diff.githubusercontent.com/raw/OGRECave/ogre/pull/2221.patch)
-optdepends=('python: python bindings')
-sha512sums=('72d8621ab9a9f9ae8561237fdeb23c9887984f2aed1ee72e62199fa7f26c259c75bca88c7f0f3472c0715b6e8295b7d76a96d434100413f7ece6f2db218f6278'
- '0f1251e43b21cf70339cf636bdc3928ad0f47080e05a532fbe6d431213515c8bb24ab48151955455f1820076eca452ccf90bf5ae9720e92ff678133dd97d976d')
-
-prepare() {
- cd ogre-${pkgver}
-
- patch -Np1 -i "$srcdir"/2221.patch
-}
-
-build() {
- cd ogre-${pkgver}
-
- cmake \
- -Bbuild \
- -GNinja \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DOGRE_BUILD_TESTS=ON \
- -DOGRE_BUILD_DEPENDENCIES=OFF
-
- ninja -C build
- ninja -C build OgreDoc
-}
-
-check() {
- cd ogre-${pkgver}
-
- ninja -C build test
-}
-
-package() {
- cd ogre-${pkgver}
-
- DESTDIR="${pkgdir}" ninja -C build install
-
- mkdir -p "${pkgdir}"/opt/ogre/samples
- mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
- mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
- install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:
Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 1030647, ogre/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2021-10-17 08:34:12 UTC (rev 1030648)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+pkgname=ogre
+pkgver=13.1.1
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'sdl2' 'glu' 'pugixml' 'zlib')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'ninja' 'cppunit')
+install=ogre.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz")
+optdepends=('python: python bindings')
+sha512sums=('aa9bde4dc9c40c4ea56ff554c0eb2bd1be596d808f3f3d83a8a7e92e828edbf573a3ff565eb50cba1247cf71007c60f7fd87746cb2059f13c16f4c73b2dccb25')
+
+build() {
+ cd ogre-${pkgver}
+
+ cmake \
+ -Bbuild \
+ -GNinja \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DOGRE_BUILD_TESTS=ON \
+ -DOGRE_BUILD_DEPENDENCIES=OFF
+
+ ninja -C build
+ ninja -C build OgreDoc
+}
+
+check() {
+ cd ogre-${pkgver}
+
+ ninja -C build test
+}
+
+package() {
+ cd ogre-${pkgver}
+
+ DESTDIR="${pkgdir}" ninja -C build install
+
+ mkdir -p "${pkgdir}"/opt/ogre/samples
+ mv "${pkgdir}"/usr/bin/SampleBrowser "${pkgdir}"/opt/ogre/samples
+ mv "${pkgdir}"/usr/bin/Test_* "${pkgdir}"/opt/ogre/samples
+ install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:
Deleted: ogre.install
===================================================================
--- ogre.install 2021-10-17 08:34:01 UTC (rev 1030647)
+++ ogre.install 2021-10-17 08:34:12 UTC (rev 1030648)
@@ -1,3 +0,0 @@
-post_install() {
- echo "Ogre samples are in /opt/ogre/samples"
-}
Copied: ogre/repos/community-x86_64/ogre.install (from rev 1030647, ogre/trunk/ogre.install)
===================================================================
--- ogre.install (rev 0)
+++ ogre.install 2021-10-17 08:34:12 UTC (rev 1030648)
@@ -0,0 +1,3 @@
+post_install() {
+ echo "Ogre samples are in /opt/ogre/samples"
+}
More information about the arch-commits
mailing list