Skip to content

Commit

Permalink
chore: update version to 1.0.13
Browse files Browse the repository at this point in the history
1.0.13

Log: 1.0.13
  • Loading branch information
Johnson-zs committed Jan 2, 2025
1 parent 3f3ce04 commit 0d89989
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Copyright: None
License: CC0-1.0

# Project file
Files: *.pro *.pri
Files: *CMakeLists.txt *.pc.in
Copyright: None
License: CC0-1.0

Expand Down
27 changes: 20 additions & 7 deletions archlinux/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,19 @@ pkgdesc='A document parser library ported from document2html'
arch=('x86_64' 'aarch64')
url="https://github.com/linuxdeepin/docparser"
license=('GPL3')
depends=('poppler' 'libzip' 'pugixml' 'tinyxml2')
makedepends=('qt5-tools')
depends=(
'poppler'
'libzip'
'pugixml'
'freetype2'
'libxml2'
'util-linux-libs' # for uuid
'tinyxml2'
)
makedepends=(
'cmake'
'pkg-config'
)
conflicts=('docparser')
provides=('docparser')
groups=('deepin-git')
Expand All @@ -19,12 +30,14 @@ source=("${sourcetars[@]}")
b2sums=('SKIP')

build() {
cd $sourcedir
qmake-qt5 PREFIX=/usr
make
cd $sourcedir
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=None
cmake --build build
}

package() {
cd $sourcedir
make INSTALL_ROOT="$pkgdir" install
cd $sourcedir
DESTDIR="$pkgdir" cmake --install build
}
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
docparser (1.0.13) unstable; urgency=medium

* Remove Qt
* Use CMake
* Use C++17

-- Zhang Sheng <[email protected]> Fri, 27 Dec 2024 14:06:31 +0800

docparser (1.0.12) unstable; urgency=medium

* update to 1.0.12
Expand Down

0 comments on commit 0d89989

Please sign in to comment.