Felix Yan pushed to branch main at Arch Linux / Packaging / Packages / mpdecimal
Commits:
88a2ea94 by Felix Yan at 2024-02-10T01:21:17+02:00
upgpkg: 4.0.0-2: fix dep and ldflags hack
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,10 +1,11 @@
pkgbase = mpdecimal
pkgdesc = Package for correctly-rounded arbitrary precision decimal
floating point arithmetic
pkgver = 4.0.0
- pkgrel = 1
+ pkgrel = 2
url = https://www.bytereef.org/mpdecimal/index.html
arch = x86_64
license = BSD
+ depends = glibc
depends = gcc-libs
source =
https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-4.0.0.tar.gz
sha512sums =
7610ac53ac79f7a8a33fa7a3e61515810444ec73ebca859df7a9ddc18e96b990c99323172810c9cc7f6d6e1502c0be308cd443d6c2d5d0c871648e4842e05d59
=====================================
PKGBUILD
=====================================
@@ -2,12 +2,12 @@
pkgname=mpdecimal
pkgver=4.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="Package for correctly-rounded arbitrary precision decimal floating
point arithmetic"
arch=('x86_64')
url="https://www.bytereef.org/mpdecimal/index.html"
license=('BSD')
-depends=('gcc-libs')
+depends=('glibc' 'gcc-libs')
source=("https://www.bytereef.org/software/$pkgname/releases/$pkgname-$pkgver.tar.gz")
sha512sums=('7610ac53ac79f7a8a33fa7a3e61515810444ec73ebca859df7a9ddc18e96b990c99323172810c9cc7f6d6e1502c0be308cd443d6c2d5d0c871648e4842e05d59')
@@ -15,7 +15,7 @@ build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
- MPD_LDXXFLAGS="LDFLAGS" make
+ LDXXFLAGS="$LDFLAGS" make
}
package() {
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/mpdecimal/-/commit/88a2ea9418cf6c639fb9881a07cdf8bcb148cfc9
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/mpdecimal/-/commit/88a2ea9418cf6c639fb9881a07cdf8bcb148cfc9
You're receiving this email because of your account on gitlab.archlinux.org.