core/xcb-util-cursor/PKGBUILD
2016-09-24 18:08:47 +02:00

28 lines
681 B
Bash

#
# Contributor: Sébastien Luttringer <seblu at seblu dot net>
# Contributor: Bastien Dejean <nihilhill@gmail.com>
pkgname=xcb-util-cursor
pkgver=0.1.3
pkgrel=1
pkgdesc='XCB cursor library'
arch=('x86_64')
url='http://cgit.freedesktop.org/xcb/util-cursor'
license=('custom:MIT')
depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
source=("http://xcb.freedesktop.org/dist/xcb-util-cursor-$pkgver.tar.bz2")
sha1sums=('26562eb6d4151307f7b6a53453d360ecfc0563ac')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}