blob: f094d56fc1b2b42a87c79d34235d018432c0720b (
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.16
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 }
|