mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
710 B
Bash
25 lines
710 B
Bash
|
# $Id: $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
||
|
# Contributor: Sergej Pupykin <sergej@aur.archlinux.org>
|
||
|
# Contributor: Robert Stoffers <rob1@ubuntu.com>
|
||
|
|
||
|
pkgname=xmlto
|
||
|
pkgver=0.0.21
|
||
|
pkgrel=2
|
||
|
pkgdesc="Convert xml to many other formats"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://cyberelk.net/tim/software/xmlto/"
|
||
|
license=('GPL')
|
||
|
depends=('libxslt>=1.1.24')
|
||
|
makedepends=('docbook-xsl')
|
||
|
source=(https://fedorahosted.org/releases/x/m/xmlto/xmlto-0.0.21.tar.bz2)
|
||
|
md5sums=('cc2039dedc81f1a56b06e5fdac6f7570')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|