mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
822 B
Bash
24 lines
822 B
Bash
|
# $Id: PKGBUILD 36360 2009-04-21 06:06:15Z eric $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
# Contributor: Leslie P. Polzer <leslie.polzer@gmx.net>
|
||
|
pkgname=xcompmgr
|
||
|
pkgver=1.1.4
|
||
|
pkgrel=2
|
||
|
pkgdesc="Composite Window-effects manager for X.org"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://xorg.freedesktop.org/"
|
||
|
license=('custom')
|
||
|
depends=('libxcomposite' 'libxdamage' 'libxrender')
|
||
|
conflicts=('xapps')
|
||
|
replaces=('xapps')
|
||
|
source=(http://xorg.freedesktop.org/releases/individual/app/${pkgname}-${pkgver}.tar.bz2 LICENSE)
|
||
|
md5sums=('3eb1c2b7a6ceaec4ee872cb06d202d91' 'b763de909d0584df0a4c5de0ed8b448b')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
install -D -m644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
||
|
}
|