aboutsummaryrefslogtreecommitdiffstats
path: root/xcman/PKGBUILD
blob: 3df1283e929cccd77e58bbfcd9477c1531e3a097 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname=xcman
pkgver=1.0
pkgrel=1
pkgdesc="Minimal compositing manager for X"
arch=('x86_64')
url='https://github.com/maandree/xcman'
license=('MIT')
depends=('libxcomposite' 'libxdamage' 'libxrender' 'libxext')
source=(https://github.com/maandree/xcman/archive/$pkgver.tar.gz)
sha256sums=('ca3c3ebaed322303e9a185ab1ec5d12022f498ca61b3db439339896eeadc2320')

build() {
    cd "${pkgname}-${pkgver}"
    make PREFIX=/usr
}

package() {
    cd "${pkgname}-${pkgver}"
    make PREFIX=/usr DESTDIR="$pkgdir" install
}