[arch-commits] Commit in xalan-c/repos/community-x86_64 (PKGBUILD PKGBUILD)
Christian Hesse
eworm at archlinux.org
Wed Jul 22 20:39:41 UTC 2020
Date: Wednesday, July 22, 2020 @ 20:39:41
Author: eworm
Revision: 664913
archrelease: copy trunk to community-x86_64
Added:
xalan-c/repos/community-x86_64/PKGBUILD
(from rev 664912, xalan-c/trunk/PKGBUILD)
Deleted:
xalan-c/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 65 ++++++++++++++++++++++++++++++++-----------------------------
1 file changed, 35 insertions(+), 30 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-07-22 20:39:37 UTC (rev 664912)
+++ PKGBUILD 2020-07-22 20:39:41 UTC (rev 664913)
@@ -1,30 +0,0 @@
-# Maintainer: Roman Kyrylych <Roman.Kyrylych at gmail.com>
-# Contributor: William Rea <sillywilly at gmail.com>
-
-pkgname=xalan-c
-pkgver=1.11
-pkgrel=3
-epoch=1
-pkgdesc="A XSLT processor for transforming XML documents"
-arch=('x86_64')
-url="http://xalan.apache.org/"
-license=('APACHE')
-depends=('xerces-c')
-validpgpkeys=('78C476CF17BB57E17475C80B828B1A23586A109E') # David N. Bertoni <david_n_bertoni at us.ibm.com>
-source=("http://www.eu.apache.org/dist/xalan/xalan-c/sources/xalan_c-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('4f5e7f75733d72e30a2165f9fdb9371831cf6ff0d1997b1fb64cdd5dc2126a28'
- 'SKIP')
-
-build() {
- export XALANCROOT=${srcdir}/$pkgname-$pkgver/c
- cd $pkgname-$pkgver/c
-
- ./runConfigure -p linux -c gcc -x g++ -P/usr
-# ./configure --prefix=/usr
- make -j1
-}
-
-package() {
- cd $pkgname-$pkgver/c
- make DESTDIR="$pkgdir" install
-}
Copied: xalan-c/repos/community-x86_64/PKGBUILD (from rev 664912, xalan-c/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-07-22 20:39:41 UTC (rev 664913)
@@ -0,0 +1,35 @@
+# Maintainer: Roman Kyrylych <Roman.Kyrylych at gmail.com>
+# Contributor: William Rea <sillywilly at gmail.com>
+
+pkgname=xalan-c
+pkgver=1.12
+pkgrel=1
+epoch=1
+pkgdesc="A XSLT processor for transforming XML documents"
+arch=('x86_64')
+url="https://xalan.apache.org/"
+license=('APACHE')
+makedepends=('cmake')
+depends=('xerces-c')
+provides=('libxalan-c.so' 'libxalanMsg.so')
+validpgpkeys=('F33D281D470AB4436756147C07B3C8BC4083E800') # Roger Leigh <rleigh at debian.org>
+source=("https://downloads.apache.org/xalan/xalan-c/sources/xalan_c-$pkgver.tar.gz"{,.asc})
+sha256sums=('ee7d4b0b08c5676f5e586c7154d94a5b32b299ac3cbb946e24c4375a25552da7'
+ 'SKIP')
+
+build() {
+ mkdir build
+ cd build
+
+ cmake \
+ "../xalan_c-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release
+ make
+}
+
+package() {
+ cd build
+
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list