[arch-commits] Commit in ocaml-ppx_derivers/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Mon May 31 14:08:04 UTC 2021
Date: Monday, May 31, 2021 @ 14:08:03
Author: felixonmars
Revision: 952803
archrelease: copy trunk to community-x86_64
Added:
ocaml-ppx_derivers/repos/community-x86_64/
ocaml-ppx_derivers/repos/community-x86_64/PKGBUILD
(from rev 952802, ocaml-ppx_derivers/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: ocaml-ppx_derivers/repos/community-x86_64/PKGBUILD (from rev 952802, ocaml-ppx_derivers/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2021-05-31 14:08:03 UTC (rev 952803)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Peukert <dan.peukert at gmail.com>
+# Contributor: Jakob Gahde <j5lx at fmail.co.uk>
+
+_projectname='ppx_derivers'
+pkgname="ocaml-$_projectname"
+pkgver=1.2.1
+pkgrel=5
+pkgdesc='Shared deriving plugin registry'
+arch=('x86_64')
+url="https://github.com/ocaml-ppx/$_projectname"
+license=('BSD')
+depends=('ocaml')
+makedepends=('dune')
+options=('!strip')
+source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('b6595ee187dea792b31fc54a0e1524ab1e48bc6068d3066c45215a138cc73b95')
+
+_sourcedirectory="$_projectname-$pkgver"
+
+build() {
+ cd "$srcdir/$_sourcedirectory/"
+ dune build -p "$_projectname" --verbose
+}
+
+package() {
+ cd "$srcdir/$_sourcedirectory/"
+ DESTDIR="$pkgdir" dune install --prefix '/usr' --libdir 'lib/ocaml'
+
+ install -dm755 "$pkgdir/usr/share/doc/$pkgname"
+ mv "$pkgdir/usr/doc/$_projectname/"* "$pkgdir/usr/share/doc/$pkgname/"
+ rm -r "$pkgdir/usr/doc/"
+
+ install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
+ ln -sf "/usr/share/doc/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
+}
More information about the arch-commits
mailing list