xmlto 0.0.29-1

This commit is contained in:
xhaa123 2024-10-17 18:24:14 +08:00
parent 586e1a9a9d
commit 46e6abe121

View File

@ -1,22 +1,35 @@
# Maintainer: Future Linux Team <futurelinux@163.com> # This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=xmlto pkgname=xmlto
pkgver=0.0.28 pkgver=0.0.29
pkgrel=1 pkgrel=1
pkgdesc="Convert xml to many other formats" pkgdesc="Convert xml to many other formats"
arch=('x86_64') arch=('x86_64')
url="https://pagure.io/xmlto/" url="https://pagure.io/xmlto/"
license=('GPL') license=('GPL')
depends=('docbook-xml' 'docbook-xsl' 'libxslt') depends=('libxslt')
makedepends=('lynx') makedepends=('docbook-xsl')
source=(https://releases.pagure.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2) source=(https://pagure.io/xmlto/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha256sums=(1130df3a7957eb9f6f0d29e4aa1c75732a7dfb6d639be013859b5c7ec5421276) sha256sums=(40504db68718385a4eaa9154a28f59e51e59d006d1aa14f5bc9d6fded1d6017a)
prepare() {
cd ${pkgname}-${pkgver}
autoreconf -fiv
}
build() { build() {
cd ${pkgname}-${pkgver} cd ${pkgname}-${pkgver}
LINKS="/usr/bin/links" \ ./configure \
${CONFIGURE} --prefix=/usr \
--libdir=/usr/lib64 \
--mandir=/usr/share/man \
BASH=/bin/bash
make make
} }