contrib/gdl/Pkgfile

25 lines
499 B
Plaintext
Raw Normal View History

2020-05-28 16:33:35 +02:00
# Description: GNOME Docking Library
2021-10-22 18:40:30 +02:00
# URL: https://gitlab.gnome.org/GNOME/gdl
2020-05-28 16:33:35 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gtk3
name=gdl
2021-08-28 18:37:55 +02:00
version=3.40.0
2022-01-13 12:08:35 +01:00
release=2
2020-05-28 16:33:35 +02:00
source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
2020-11-03 21:58:52 +01:00
cd $name-$version
2020-05-28 16:33:35 +02:00
2020-11-03 21:58:52 +01:00
./configure --prefix=/usr \
2021-08-28 18:37:55 +02:00
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-nls
2020-05-28 16:33:35 +02:00
2020-11-03 21:58:52 +01:00
make
make DESTDIR=$PKG install
2020-05-28 16:33:35 +02:00
2020-11-03 21:58:52 +01:00
rm -r $PKG/usr/share/gtk-doc
2020-05-28 16:33:35 +02:00
}