blob: 3decf0fbf96c71b2ca2282d4c8477a838e2a27ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: The GObject Builder
# URL: http://www.5z.com/jirka/gob.html
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: bison, flex, glib, gtk
name=gob
version=2.0.16
release=1
source=(http://ftp.5z.com/pub/$name/gob2-$version.tar.gz)
build() {
cd gob2-$version
./configure --prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
}
|