blob: d5cdba60b1ed24d9c06c5ac74639bbbd42866fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
DEPS=(perl expat)
PKG_VER=2.46
SOURCE=https://cpan.metacpan.org/authors/id/T/TO/TODDR/XML-Parser-$PKG_VER.tar.gz
DESC="A perl interface for the expat XML parser"
build () {
perl Makefile.PL
make
make test
make DESTDIR=$PKG_DEST install
}
|