summaryrefslogtreecommitdiff
path: root/manualPorts/fluxbox/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/fluxbox/Pkgfile')
-rw-r--r--manualPorts/fluxbox/Pkgfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/manualPorts/fluxbox/Pkgfile b/manualPorts/fluxbox/Pkgfile
new file mode 100644
index 0000000..00a3f8f
--- /dev/null
+++ b/manualPorts/fluxbox/Pkgfile
@@ -0,0 +1,28 @@
+# Description: A blackbox based window manager
+# URL: http://fluxbox.sf.net
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Contributor: Lin SiFuh, #crux at irc dot libera dot chat
+# Depends on: xorg imlib2
+
+name=fluxbox
+version=1.3.7
+release=1
+source=(http://download.sourceforge.net/${name}/${name}-${version}.tar.bz2
+ fluxbox-1.3.7-c++17.patch)
+
+build() {
+
+ cd "${name}"-"${version}"
+
+ patch -p1 -i ../fluxbox-1.3.7-c++17.patch
+
+ ./configure --prefix=/usr \
+ --disable-nls
+
+ sed -i '/nls\/[a-z][a-z]_[A-Z][A-Z]/d' Makefile
+
+ make && make DESTDIR="${PKG}" install
+
+ rm -rf "${PKG}"/usr/doc
+
+}