summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcondy2020-02-08 00:28:43 +0800
committercondy2020-02-08 00:28:43 +0800
commitd30cb3c633bae33b1b7e60f7e04c091af864f101 (patch)
treeb6ee235b6d54c9df5f5b9cc7b270c685abb6cdc7
parentc739f62787b45263a751fc2f3f805ec4e9be9689 (diff)
downloadaur-d30cb3c633bae33b1b7e60f7e04c091af864f101.tar.gz
BugFix: fixed missing file issue when build
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2d104dd5c77e..066d8336511c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ocaml-easy-format
pkgdesc = Pretty-printing library for OCaml
pkgver = 1.3.2
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/ocaml-community/easy-format
arch = x86_64
license = BSD
@@ -11,7 +11,9 @@ pkgbase = ocaml-easy-format
options = !strip
options = staticlibs
source = https://github.com/ocaml-community/easy-format/releases/download/1.3.2/easy-format-1.3.2.tbz
+ source = compile.patch
sha256sums = 3440c2b882d537ae5e9011eb06abb53f5667e651ea4bb3b460ea8230fa8c1926
+ sha256sums = ef631f2298d6ac15762f35a6eb3ff7e018d12cc86f4073e514bef24ebb212ecc
pkgname = ocaml-easy-format
diff --git a/PKGBUILD b/PKGBUILD
index 3a001bc09e92..ec66cc357da7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
_pkgname=easy-format
pkgname=ocaml-${_pkgname}
pkgver=1.3.2
-pkgrel=3
+pkgrel=4
pkgdesc="Pretty-printing library for OCaml"
arch=('x86_64')
url="https://github.com/ocaml-community/${_pkgname}"
@@ -13,8 +13,9 @@ options=('!strip' 'staticlibs')
provides=('ocaml-easy-format')
depends=('glibc')
makedepends=('dune')
-source=(${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tbz)
-sha256sums=('3440c2b882d537ae5e9011eb06abb53f5667e651ea4bb3b460ea8230fa8c1926')
+source=(${url}/releases/download/${pkgver}/${_pkgname}-${pkgver}.tbz compile.patch)
+sha256sums=('3440c2b882d537ae5e9011eb06abb53f5667e651ea4bb3b460ea8230fa8c1926'
+ 'ef631f2298d6ac15762f35a6eb3ff7e018d12cc86f4073e514bef24ebb212ecc')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"