Update package version to 0.0.29

This commit is contained in:
2025-05-10 20:36:06 +03:00
parent 806493678a
commit 820da5bdd2
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: xmlto name: xmlto
description: Shell script for converting XML files to various formats description: Shell script for converting XML files to various formats
version: 0.0.28 version: 0.0.29
url: https://pagure.io/xmlto/ url: https://pagure.io/xmlto/
license: GPL2 license: GPL2
architecture: any architecture: any
+4 -1
View File
@@ -15,7 +15,9 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
./configure --prefix=/usr autoreconf -i
BASH=/bin/bash ./configure --prefix=/usr
make make
} }
@@ -30,5 +32,6 @@ check() {
package() { package() {
make DESTDIR="$BPM_OUTPUT" install make DESTDIR="$BPM_OUTPUT" install
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xmlto/COPYING install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/xmlto/COPYING
} }