diff options
author | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
commit | ccc722b7ed330198d82a3cf28ead76d6d107a70a (patch) | |
tree | 7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/icewm/icewm.xibuild | |
parent | 9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff) |
added java
Diffstat (limited to 'repo/icewm/icewm.xibuild')
-rw-r--r-- | repo/icewm/icewm.xibuild | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/repo/icewm/icewm.xibuild b/repo/icewm/icewm.xibuild deleted file mode 100644 index 3ecdf11..0000000 --- a/repo/icewm/icewm.xibuild +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -NAME="icewm" -DESC="Window manager designed for speed, usability and consistency" - -MAKEDEPS=" alsa-lib asciidoctor cmake fribidi glib imlib2 libao libintl libsm libsndfile libxcomposite libxdamage libxft libxinerama libxpm libxrandr perl librsvg" - -PKG_VER=2.9.6 -SOURCE="https://github.com/ice-wm/icewm/releases/download/$PKG_VER/icewm-$PKG_VER.tar.lz" - -build() { - cmake -B build \ - -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCFGDIR=/etc \ - -DENABLE_NLS=OFF \ - -DCONFIG_IMLIB2=ON \ - -DENABLE_LTO=ON \ - -DDOCDIR=/usr/share/doc/icewm \ - -DCONFIG_LIBRSVG=ON - cmake --build build -} - -package() { - DESTDIR="$PKG_DEST" cmake --build build --target install -} - |