Pkgfile 600 B

123456789101112131415161718
  1. # Description: IceWM is a window manager for the X Window System. The goal of IceWM is speed, simplicity, and not getting in the user way.
  2. # URL: https://ice-wm.org/
  3. # Maintainer: Daniel Azevedo, daniazevedo77 at posteo dot net
  4. # Depends on: lzip xorg-libxcomposite xorg-libxdamage xorg-libxrandr xorg-libxinerama libsndfile glib-networking imlib2 librsvg xorg-libxpm
  5. name=icewm
  6. version=3.5.0
  7. release=1
  8. source=(https://github.com/ice-wm/$name/releases/download/$version/$name-$version.tar.lz)
  9. build() {
  10. cd $name-$version
  11. ./autogen.sh
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. }