[arch-commits] Commit in alglib/repos/community-x86_64 (PKGBUILD PKGBUILD)
Jaroslav Lichtblau
jlichtblau at gemini.archlinux.org
Sun Jan 16 11:12:58 UTC 2022
Date: Sunday, January 16, 2022 @ 11:12:57
Author: jlichtblau
Revision: 1105979
archrelease: copy trunk to community-x86_64
Added:
alglib/repos/community-x86_64/PKGBUILD
(from rev 1105978, alglib/trunk/PKGBUILD)
Deleted:
alglib/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 132 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 66 insertions(+), 66 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-01-16 11:12:50 UTC (rev 1105978)
+++ PKGBUILD 2022-01-16 11:12:57 UTC (rev 1105979)
@@ -1,66 +0,0 @@
-# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
-# Contributor: Aetf <aetf at unlimitedcodeworks dot xyz>
-# Contributor: Lex Black <autumn-wind at web dot de>
-# Contributor: Peng Zhang <pczhang at gmail.com>
-
-pkgname=alglib
-pkgver=3.17.0
-pkgrel=1
-pkgdesc="A cross-platform numerical analysis and data processing library - Free Version"
-arch=('x86_64')
-url="http://www.alglib.net"
-license=('GPL2')
-makedepends=('cmake')
-source=(http://www.alglib.net/translator/re/alglib-${pkgver}.cpp.gpl.tgz)
-sha256sums=('556667a926ac31b8b17e4bbac34dd6798e0d73339ff77a864ae8763c0e7918f7')
-
-prepare() {
- cd "${srcdir}"/cpp
-
-# generate a simple cmake file to build the library since the release
-# doesn't provide any build system
-
- cat > CMakeLists.txt <<END
-cmake_minimum_required(VERSION 3.0)
-project(alglib VERSION ${pkgver})
-
-file(GLOB SRCS src/*.cpp)
-file(GLOB HEADERS src/*.h)
-
-add_library(alglib_static STATIC \${SRCS})
-set_target_properties(alglib_static PROPERTIES
- OUTPUT_NAME alglib
- PUBLIC_HEADER "\${HEADERS}"
-)
-
-add_library(alglib SHARED \${SRCS})
-set_target_properties(alglib PROPERTIES
- VERSION "\${PROJECT_VERSION}"
- SOVERSION "\${PROJECT_VERSION_MAJOR}"
- PUBLIC_HEADER "\${HEADERS}"
-)
-
-include(GNUInstallDirs)
-install(TARGETS alglib alglib_static
- LIBRARY DESTINATION "\${CMAKE_INSTALL_LIBDIR}"
- ARCHIVE DESTINATION "\${CMAKE_INSTALL_LIBDIR}"
- PUBLIC_HEADER DESTINATION "\${CMAKE_INSTALL_INCLUDEDIR}/libalglib"
-)
-install(FILES manual.cpp.html DESTINATION "\${CMAKE_INSTALL_DOCDIR}")
-END
-
- mkdir -p build
-}
-
-build() {
- cd "${srcdir}"/cpp/build
-
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib ..
- make VERBOSE=1
-}
-
-package() {
- cd "${srcdir}"/cpp/build
-
- make DESTDIR="${pkgdir}" install
-}
Copied: alglib/repos/community-x86_64/PKGBUILD (from rev 1105978, alglib/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-01-16 11:12:57 UTC (rev 1105979)
@@ -0,0 +1,66 @@
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Aetf <aetf at unlimitedcodeworks dot xyz>
+# Contributor: Lex Black <autumn-wind at web dot de>
+# Contributor: Peng Zhang <pczhang at gmail.com>
+
+pkgname=alglib
+pkgver=3.18.0
+pkgrel=1
+pkgdesc="A cross-platform numerical analysis and data processing library - Free Version"
+arch=('x86_64')
+url="http://www.alglib.net"
+license=('GPL2')
+makedepends=('cmake')
+source=(http://www.alglib.net/translator/re/alglib-${pkgver}.cpp.gpl.tgz)
+sha256sums=('98ee704574321f10b25fdab64549c114c00df9629092b971cce9fedfd96ee829')
+
+prepare() {
+ cd "${srcdir}"/alglib-cpp
+
+# generate a simple cmake file to build the library since the release
+# doesn't provide any build system
+
+ cat > CMakeLists.txt <<END
+cmake_minimum_required(VERSION 3.0)
+project(alglib VERSION ${pkgver})
+
+file(GLOB SRCS src/*.cpp)
+file(GLOB HEADERS src/*.h)
+
+add_library(alglib_static STATIC \${SRCS})
+set_target_properties(alglib_static PROPERTIES
+ OUTPUT_NAME alglib
+ PUBLIC_HEADER "\${HEADERS}"
+)
+
+add_library(alglib SHARED \${SRCS})
+set_target_properties(alglib PROPERTIES
+ VERSION "\${PROJECT_VERSION}"
+ SOVERSION "\${PROJECT_VERSION_MAJOR}"
+ PUBLIC_HEADER "\${HEADERS}"
+)
+
+include(GNUInstallDirs)
+install(TARGETS alglib alglib_static
+ LIBRARY DESTINATION "\${CMAKE_INSTALL_LIBDIR}"
+ ARCHIVE DESTINATION "\${CMAKE_INSTALL_LIBDIR}"
+ PUBLIC_HEADER DESTINATION "\${CMAKE_INSTALL_INCLUDEDIR}/libalglib"
+)
+install(FILES manual.cpp.html DESTINATION "\${CMAKE_INSTALL_DOCDIR}")
+END
+
+ mkdir -p build
+}
+
+build() {
+ cd "${srcdir}"/alglib-cpp/build
+
+ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib ..
+ make VERBOSE=1
+}
+
+package() {
+ cd "${srcdir}"/alglib-cpp/build
+
+ make DESTDIR="${pkgdir}" install
+}
More information about the arch-commits
mailing list