blob: 023b8f5f12633f77b48c8540028a20219abaadec (
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
31
32
33
34
35
36
|
#!/bin/mkpkg
# description: Simple shell script frontend to XSLT processors for DocBook conversion
# url: https://pagure.io/xmlto
name=xmlto
version=0.0.29
release=1
depends=(bash libxslt util-linux)
makedeps=(autoconf automake flex docbook-xsl libxslt)
source=(https://pagure.io/xmlto/archive/${version}/xmlto-${version}.tar.gz)
renames=($name-$version.tar.gz)
sha256sums=(
"40504db68718385a4eaa9154a28f59e51e59d006d1aa14f5bc9d6fded1d6017a"
)
build() {
cd xmlto-$version
autoreconf -fi
./configure \
--prefix=/usr
make
make DESTDIR="$PKG" install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|