Date: Saturday, March 24, 2018 @ 00:54:52
Author: arojas
Revision: 320086
archrelease: copy kde-unstable to kde-unstable-x86_64
Added:
poxml/repos/kde-unstable-x86_64/
poxml/repos/kde-unstable-x86_64/PKGBUILD
(from rev 320085, poxml/kde-unstable/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: poxml/repos/kde-unstable-x86_64/PKGBUILD (from rev 320085,
poxml/kde-unstable/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2018-03-24 00:54:52 UTC (rev 320086)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=poxml
+pkgver=18.03.80
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://www.kde.org/applications/development/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(qt5-base gettext)
+makedepends=(extra-cmake-modules kdoctools)
+conflicts=(kdesdk-poxml)
+replaces=(kdesdk-poxml)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('5b6abe78004ed6df76e42862b38e05e3e5f3e36eef987bb8174fc7efa76314a9'
+ 'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck
<[email protected]>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}