blob: eafaf228a227282f737d64a097864b84a60e9618 (
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
|
# Description: Suite office très légère
# URL: http://siag.nu/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: mowitz, nextaw, xawm
# Run on: mowitz,nextaw,xawm
name=siag
version=3.6.1
release=1
source=(http://siag.nu/pub/$name/$name-$version.tar.gz\
siag.desktop)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-docdir=/usr/share/doc/siag \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
install -D -m644 ../siag.desktop \
$PKG/usr/share/ede/programs/Applications/siag.desktop
}
|