blob: ecee61425dc3371ab25c07e24e5e289d2ac57587 (
plain)
1 # Description: a preprocessor for making GObjects with # inline C
2 # URL: http://www.5z.com/jirka/gob.html#download
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on:
5
6 name=gob
7 version=2.0.20
8 release=1
9 source=(http://ftp.5z.com/pub/gob/gob2-$version.tar.gz)
10
11 build() {
12 cd gob2-$version
13 ./configure --prefix=/usr --mandir=/usr/man
14 make
15 make DESTDIR=$PKG install
16 }
|