🔒 Repository is read-only – file editing is disabled.

recipes/gui/icewm/PAGBUILD.yaml main

43 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637383940414243
pkgname: icewm
pkgver: '4.1.0'
pkgrel: '1'
pkgdesc: 'IceWM is a window manager with the goals of speed, simplicity'
url: 'www.icewm.org'
arch: x86_64
license:
- GPL2

depends: []
makedepends:
- cmake
- 'xorg-libxpm'
- 'xorg-server'
- 'xorg-fontconfig'
- fribidi
- imlib2
- 'xorg-libxcomposite'

source:
- 'https://github.com/ice-wm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.lz'

sha256sums:
- SKIP

build: |
  cd ${pkgname}-${pkgver}
  mkdir build
  cd    build
  cmake -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_BUILD_TYPE=Release  \
        -DCFGDIR=/etc               \
        -DENABLE_LTO=ON             \
        -DDOCDIR=/usr/share/doc/icewm-${pkgver}  \
        ..
  make

  make DESTDIR=${PKGDIR} install

  install -Dm644 ../COPYING ${PKGDIR}/usr/share/licenses/${pkgname}/COPYING

package: |
  true