mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-03 03:21:35 +02:00
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
# Contributor: Jean-Louis Fuchs <ganwell@fangorn.ch>
|
|
# Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch>
|
|
pkgname=lablgtk
|
|
pkgver=2.18.5
|
|
pkgrel=1
|
|
pkgdesc="LablGtk - an OCaml interface to GTK+ 2.x"
|
|
url="http://lablgtk.forge.ocamlcore.org/"
|
|
# ocaml is not built for x86, armhf
|
|
arch="all !x86 !armhf !aarch64"
|
|
license="GPL"
|
|
depends_dev="lablgtk gtk+-dev gtkspell-dev librsvg-dev gtksourceview2-dev"
|
|
depends="ocaml-findlib camlp4 ocaml"
|
|
makedepends="$depends $depends_dev"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
source="https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-$pkgver.tar.gz"
|
|
builddir="$srcdir/lablgtk-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
./configure --prefix=/usr || return 1
|
|
make world || return 1
|
|
make opt || return 1
|
|
make doc || return 1
|
|
}
|
|
|
|
doc() {
|
|
pkgdesc="$pkgdesc (documentation)"
|
|
|
|
local docdir="$subpkgdir"/usr/share/doc/$pkgname/
|
|
mkdir -p "$docdir"
|
|
cp -r "$builddir"/doc/html/* "$docdir"/
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/ocaml/ld.conf
|
|
}
|
|
|
|
md5sums="43eb7062439f7ddd0d8ad96c3e3b87dd lablgtk-2.18.5.tar.gz"
|
|
sha256sums="2bf251db21c077fdd26c035ea03edd8fe609187f908e520e87a8ffdd9c36d233 lablgtk-2.18.5.tar.gz"
|
|
sha512sums="7b6ba1a4dfa82cc3bbc502082ff4fccc23cc06ee4f30d01a2e423f3f99e945a4befe450d230b5aa19c5b810e9f46f2838655099d49da2db7c8a2e52eac213024 lablgtk-2.18.5.tar.gz"
|