pmaports/main/xcursorgen/APKBUILD
Luca Weiss 8c2a95dbe2
unity8: initial packaging (!27)
* Mir starts up and is able to display system settings
* x86_64 only for now, because at least ubuntu-app-test did not build
  on aarch64

Based on PureTryOut's work. Getting it to this stage was a huge effort
(as it shows in the package count: 111(!)). See the merge request for
details.

[skip ci]: this won't finish in CI; ollieparanoid made sure that
           everything builds for x86_64.
2019-02-13 21:47:29 +01:00

25 lines
744 B
Text

pkgname=xcursorgen
pkgver=1.0.6
pkgrel=0
pkgdesc="Create an X cursor file from PNG images"
arch="x86_64"
url="https://xorg.freedesktop.org/"
license="custom"
depends=""
makedepends="libx11-dev libxcursor-dev libpng-dev"
source="https://xorg.freedesktop.org/archive/individual/app/$pkgname-$pkgver.tar.bz2"
subpackages="$pkgname-doc"
build() {
cd "$builddir"
./configure --prefix=/usr
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
install -m755 -d "$pkgdir/usr/share/licenses/$pkgname"
install -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/"
}
sha512sums="3b464b7be3cec8c6d2bf4538266108bdc09e1dae4053d573f7f38e004929b41be0d996aa54918490fa040655644e2b0d4fab1ec24cca014d77bdb91c41ab1db4 xcursorgen-1.0.6.tar.bz2"