PKGBUILDs/aur/compton-git/PKGBUILD

41 lines
1 KiB
Bash
Raw Normal View History

2013-03-17 21:07:51 +00:00
# Maintainer: OK100 <ok100 at lavabit dot com>
2013-02-08 19:18:28 +00:00
# Previous Maintainer: Valère Monseur <valere dot monseur at ymail dot com>
pkgname=compton-git
2013-04-08 16:09:14 +00:00
pkgver=290.dfd4dd1
pkgver() {
cd $srcdir/compton
echo $(git rev-list --count master).$(git rev-parse --short master)
}
epoch=1
pkgrel=1
2013-02-08 19:18:28 +00:00
pkgdesc="X Compositor (a fork of xcompmgr-dana)"
arch=(i686 x86_64)
url="https://github.com/chjj/compton"
license=('MIT')
2013-03-17 21:07:51 +00:00
depends=('libx11' 'libxcomposite' 'libxdamage' 'libxfixes' 'libxext' 'libxrender' 'libxrandr' 'xproto' 'bash' 'xorg-xprop' 'xorg-xwininfo' 'pcre' 'libconfig')
makedepends=('git' 'make' 'pkg-config' 'asciidoc' 'libgl')
2013-04-08 16:09:14 +00:00
source=("compton::git://github.com/chjj/compton.git")
2013-02-08 19:18:28 +00:00
_gitname="compton"
2013-04-08 16:09:14 +00:00
build() {
cd "$_gitname"
make
2013-02-08 19:18:28 +00:00
make docs
}
package() {
2013-04-08 16:09:14 +00:00
cd "$_gitname"
2013-02-08 19:18:28 +00:00
2013-04-08 16:09:14 +00:00
make DESTDIR="$pkgdir" PREFIX=/usr install
2013-02-08 19:18:28 +00:00
# install license
install -D -m644 "LICENSE" "$pkgdir/usr/share/licenses/$_gitname/LICENSE"
# example conf
install -D -m644 "compton.sample.conf" "$pkgdir/etc/xdg/compton.conf.example"
}
2013-04-08 16:09:14 +00:00
md5sums=('SKIP')