core/xcb-util-cursor/PKGBUILD

28 lines
681 B
Bash
Raw Normal View History

2015-04-15 14:29:48 +08:00
#
# Contributor: Sébastien Luttringer <seblu at seblu dot net>
# Contributor: Bastien Dejean <nihilhill@gmail.com>
pkgname=xcb-util-cursor
2016-09-25 00:08:47 +08:00
pkgver=0.1.3
2015-04-15 14:29:48 +08:00
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")
2016-09-25 00:08:47 +08:00
sha1sums=('26562eb6d4151307f7b6a53453d360ecfc0563ac')
2015-04-15 14:29:48 +08:00
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"
}