Date: Tuesday, March 14, 2023 @ 06:48:18
Author: antiz
Revision: 1420093
archrelease: copy trunk to community-testing-x86_64
Added:
icewm/repos/community-testing-x86_64/
icewm/repos/community-testing-x86_64/PKGBUILD
(from rev 1420092, icewm/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: icewm/repos/community-testing-x86_64/PKGBUILD (from rev 1420092,
icewm/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-03-14 06:48:18 UTC (rev 1420093)
@@ -0,0 +1,26 @@
+# Maintainer: Robin Candau <[email protected]>
+# Contributor: Alexander F. Rødseth <[email protected]>
+# Contributor: Eric Bélanger <[email protected]>
+
+pkgname=icewm
+pkgver=3.3.2
+pkgrel=1
+pkgdesc='Window Manager designed for speed, usability, and consistency'
+arch=(x86_64)
+url='https://ice-wm.org/'
+license=(LGPL)
+depends=(alsa-lib imlib2 librsvg libsndfile libxcomposite libxdamage
libxinerama libxpm libxrandr)
+makedepends=(asciidoctor xorg-mkfontdir)
+optdepends=('perl: for icewm-menu-xrandr')
+source=("https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz")
+sha256sums=('4f0e81daafe35d73a2fcb39e9d1c6738b1c0a2ad3805382d69c3464d0cede1d6')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
+
+package() {
+ make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}