mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
1 KiB
Bash
24 lines
1 KiB
Bash
# $Id: PKGBUILD 43832 2009-06-30 06:07:40Z allan $
|
|
# Maintainer: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: dorphell <dorphell@gmx.net>
|
|
|
|
pkgname=icewm
|
|
pkgver=1.2.37
|
|
pkgrel=2
|
|
pkgdesc="A Window Manager designed for speed, usability, and consistency"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.icewm.org/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'imlib' 'libxrandr' 'libxft' 'libsm' 'libxinerama' 'giflib')
|
|
source=(http://downloads.sourceforge.net/sourceforge/icewm/${pkgname}-${pkgver}.tar.gz icewm.desktop)
|
|
md5sums=('970a21588d26eb361020fd60a61a482c' 'a3ed467f0199792205b04272402a9945')
|
|
sha1sums=('bee1ca66d2282888807551bc28a65b08e4108027' '7dcb1f2c89792a35b687182584ed9baa0d34cc80')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver} || return 1
|
|
./configure --prefix=/usr --sysconfdir=/etc --with-imlib \
|
|
--enable-shaped-decorations --enable-gradients || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install install-man install-docs || return 1
|
|
install -D -m644 ${srcdir}/icewm.desktop ${pkgdir}/etc/X11/sessions/icewm.desktop
|
|
}
|