diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/lablgtk/APKBUILD | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/community/lablgtk/APKBUILD b/community/lablgtk/APKBUILD index c824ab4d61..b928be19db 100644 --- a/community/lablgtk/APKBUILD +++ b/community/lablgtk/APKBUILD @@ -7,14 +7,13 @@ pkgdesc="LablGtk - an OCaml interface to GTK+ 2.x" url="http://lablgtk.forge.ocamlcore.org/" # ocaml is not built for x86, armhf arch="x86_64 ppc64le" -license="GPL" -depends_dev="lablgtk gtk+-dev gtkspell-dev librsvg-dev gtksourceview2-dev" +license="LGPL-2.1-only-WITH-linking-exception" depends="ocaml-findlib ocaml-camlp4 ocaml" -makedepends="$depends $depends_dev ocaml-camlp4-dev" +depends_dev="lablgtk gtk+-dev gtkspell-dev librsvg-dev gtksourceview2-dev" +makedepends="$depends_dev ocaml-camlp4-dev" subpackages="$pkgname-doc $pkgname-dev" -source="https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-$pkgver.tar.gz" -builddir="$srcdir/lablgtk-$pkgver" - +source="https://forge.ocamlcore.org/frs/download.php/1627/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" options="!check textrels" build() { @@ -26,20 +25,19 @@ build() { make doc } +package() { + cd "$builddir" + + make DESTDIR="$pkgdir" install + rm -f "$pkgdir"/usr/lib/ocaml/ld.conf +} + doc() { - pkgdesc="$pkgdesc (documentation)" + default_doc local docdir="$subpkgdir"/usr/share/doc/$pkgname/ mkdir -p "$docdir" cp -r "$builddir"/doc/html/* "$docdir"/ } -package() { - cd "$builddir" - make DESTDIR="$pkgdir" install - 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" |