blob: 1f44f54cdf43f6fef2dcf18528f256036346b955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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://downloads.sourceforge.net/project/openjade/opensp/$version/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
}
|