blob: ab1fdd7fcb0d9533fc5e527dc9198c7bad1dc219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id: PKGBUILD 55027 2011-08-31 14:49:55Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Orivej Desh <masecretaire@gmx.fr>
# Maintainer: Orivej Desh <masecretaire@gmx.fr>
pkgname=xml2
pkgver=0.4
pkgrel=2
pkgdesc="XML/Unix Processing Tools to convert XML and HTML to and from a line-oriented format more amenable to processing by classic Unix pipeline processing tools"
arch=("i686" "x86_64")
url="http://www.ofb.net/~egnor/xml2/"
license=("GPL")
depends=("libxml2")
source=("http://download.ofb.net/gale/$pkgname-$pkgver.tar.gz"
"01_use_libxml2_instead_of_libxml.patch")
md5sums=('8a0ef16fe0b3e1495307318c590c1ec0'
'9e810be33d2abbc8aabd8203db1f9654')
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -Np1 -i ../01_use_libxml2_instead_of_libxml.patch
autoreconf
./configure --prefix=/usr
make
make DESTDIR="$pkgdir" install
cd "$pkgdir/usr/bin"
rm html2 2html
ln -s xml2 html2
ln -s 2xml 2html
}
|