blob: e2d724778b3cf37bd317195c53efe92f8d08605a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: GNOME Docking Library
# URL: https://developer.gnome.org/gdl/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: gtk3
name=gdl
version=3.28.0
release=1
source=("http://ftp.gnome.org/pub/GNOME/sources/${name}/${version%.*}/${name}-${version}.tar.xz")
build() {
cd ${name}-${version}
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static --disable-nls
make
make DESTDIR="$PKG" install
}
|