35 lines
967 B
Bash
35 lines
967 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=xorg-xcursorgen
|
|
pkgver=1.0.7
|
|
pkgrel=2
|
|
pkgdesc="Create an X cursor file from PNG images"
|
|
arch=('i686' 'x86_64')
|
|
url="https://xorg.freedesktop.org/"
|
|
license=('Expat')
|
|
depends=('libx11' 'libxcursor' 'libpng')
|
|
makedepends=('xenocara-util-macros')
|
|
groups=('xenocara-apps' 'xenocara' 'xorg-apps' 'xorg')
|
|
source=(https://xorg.freedesktop.org/archive/individual/app/xcursorgen-${pkgver}.tar.bz2{,.sig})
|
|
sha512sums=('bd13ad23691d3daa2d5dcdc5902cf62e3dcb97a0289aff362e6cd85866a1d8cafb64f98800a75bfb4cf1f3c76244ca20201847dff594543d136d0abaec7011d2'
|
|
'SKIP')
|
|
validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith
|
|
|
|
prepare() {
|
|
cd "xcursorgen-$pkgver"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "xcursorgen-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "xcursorgen-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|