29 lines
582 B
Bash
29 lines
582 B
Bash
|
# Maintainer: Future Linux Team <futurelinux@163.com>
|
||
|
|
||
|
pkgname=xmlto
|
||
|
pkgver=0.0.28
|
||
|
pkgrel=1
|
||
|
pkgdesc="Convert xml to many other formats"
|
||
|
arch=('x86_64')
|
||
|
url="https://pagure.io/xmlto/"
|
||
|
license=('GPL')
|
||
|
depends=('docbook-xml' 'docbook-xsl' 'libxslt')
|
||
|
makedepends=('lynx')
|
||
|
source=(https://releases.pagure.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
||
|
sha256sums=(1130df3a7957eb9f6f0d29e4aa1c75732a7dfb6d639be013859b5c7ec5421276)
|
||
|
|
||
|
build() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
|
||
|
LINKS="/usr/bin/links" \
|
||
|
${CONFIGURE}
|
||
|
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|