blob: 7cd8154aa98939b8f732f6272abd80524a52ffea (
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.1
pkgrel=1
pkgdesc="Minimal compositing manager for X"
arch=('x86_64')
url='https://github.com/maandree/xcman'
license=('custom:ISC')
depends=('libxcomposite' 'libxdamage' 'libxrender')
source=(https://github.com/maandree/xcman/archive/$pkgver.tar.gz)
sha256sums=('04c6047ebde5d846dbe9ad6b9eadf91e691c6b445f97d9e3a72329eb0de24630')
build() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr
}
package() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|