summaryrefslogtreecommitdiff
path: root/manualPorts/conky/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/conky/Pkgfile')
-rw-r--r--manualPorts/conky/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/manualPorts/conky/Pkgfile b/manualPorts/conky/Pkgfile
new file mode 100644
index 0000000..b8950b9
--- /dev/null
+++ b/manualPorts/conky/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Light-weight system monitor
+# URL: http://conky.sourceforge.net/
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Packager: Juergen Daubert, jue at crux dot nu
+# Depends on: curl, glib, xorg-libxdamage, xorg-libxext, xorg-libxft, libircclient
+
+name=conky
+version=1.10.8
+release=1
+source=(https://github.com/brndnmtthws/conky/archive/v${version}.tar.gz MAX_SP.patch)
+
+build() {
+ cd $name-$version
+ patch -p1 < $SRC/MAX_SP.patch
+ mkdir build
+ cd build
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DLOCALE_DIR=/usr/share/locale \
+ -DBUILD_IRC=on \
+ -DBUILD_CURL=on \
+ ../
+ make
+ make DESTDIR=$PKG install
+}