summaryrefslogtreecommitdiff
path: root/manualPorts/gdl/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/gdl/Pkgfile')
-rw-r--r--manualPorts/gdl/Pkgfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/manualPorts/gdl/Pkgfile b/manualPorts/gdl/Pkgfile
new file mode 100644
index 0000000..e2d7247
--- /dev/null
+++ b/manualPorts/gdl/Pkgfile
@@ -0,0 +1,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
+
+}