summaryrefslogtreecommitdiff
path: root/staging/xorg-xcursorgen/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/xorg-xcursorgen/PKGBUILD')
-rw-r--r--staging/xorg-xcursorgen/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/staging/xorg-xcursorgen/PKGBUILD b/staging/xorg-xcursorgen/PKGBUILD
new file mode 100644
index 000000000..630794be0
--- /dev/null
+++ b/staging/xorg-xcursorgen/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 147178 2012-01-24 01:21:47Z eric $
+# Maintainer: Jan de Groot <jgc@archlinux.org>
+
+pkgname=xorg-xcursorgen
+pkgver=1.0.4
+pkgrel=3
+pkgdesc="Create an X cursor file from PNG images"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/"
+license=('custom')
+depends=('libx11' 'libxcursor' 'libpng')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(http://xorg.freedesktop.org/archive/individual/app/xcursorgen-${pkgver}.tar.bz2)
+sha1sums=('244c180aae8cc07175b93f314d5bbbf24171658a')
+
+build() {
+ cd "${srcdir}/xcursorgen-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/xcursorgen-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+ install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}