blob: e0161d4e93bbe44eeed45c3b855b5c7f86862ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: SGML System Conforming to International Standard ISO 8879
# URL: http://openjade.sourceforge.net/
# Maintainer NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends:
name=opensp
version=1.5.2
release=1
source=(http://dl.sourceforge.net/sourceforge/openjade/OpenSP-$version.tar.gz)
build() {
cd OpenSP-$version
./configure --prefix=/usr \
--disable-doc-build
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|