blob: 0e0ac234dce203a9fa716e562015f50a4dde82b2 (
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
|
#!/bin/sh
MAKEDEPS="unzip patch"
DEPS="libxml2"
PKG_VER=0.6.3
SOURCE=https://sourceware.org/ftp/docbook-tools/new-trials/SOURCES/sgml-common-$PKG_VER.tgz
ADDITIONAL="
https://www.linuxfromscratch.org/patches/blfs/svn/sgml-common-$PKG_VER-manpage-1.patch
"
DESC="Tools for maintaining centralized SGML catalogs."
prepare() {
patch -Np1 -i sgml-common-$PKG_VER-manpage-1.patch &&
autoreconf -f -i
}
build() {
./configure --prefix=/usr --sysconfdir=/etc &&
make
}
package () {
make DESTDIR=$PKG_DEST docdir=/usr/share/doc install &&
mkdir -p $PKG_DEST/etc/sgml
mkdir -p /etc/sgml
}
|