diff options
Diffstat (limited to 'abs/core/xorg-xcursorgen')
-rw-r--r-- | abs/core/xorg-xcursorgen/PKGBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/abs/core/xorg-xcursorgen/PKGBUILD b/abs/core/xorg-xcursorgen/PKGBUILD index c2a5ba5..146cdd6 100644 --- a/abs/core/xorg-xcursorgen/PKGBUILD +++ b/abs/core/xorg-xcursorgen/PKGBUILD @@ -3,9 +3,9 @@ pkgname=xorg-xcursorgen pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="Create an X cursor file from PNG images" -arch=(i686 x86_64) +arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxcursor' 'libpng') @@ -17,6 +17,9 @@ 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}/" |