blob: 42389cb1a066b03233dca34e8d9c0ee435b5eb15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
DEPS=(libxslt)
SOURCE=https://pagure.io/xmlto
BRANCH=
DESC="Convert xml to many other formats"
build () {
./configure --prefix=/usr
make
make DESTDIR=$PKG_DEST install
}
|