fribidi 1.0.13-1

This commit is contained in:
xhaa123 2024-04-17 11:56:05 +08:00
commit 7872fa8646

31
PKGBUILD Normal file
View File

@ -0,0 +1,31 @@
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Future Linux Team <future_linux@163.com>
pkgname=fribidi
pkgver=1.0.13
pkgrel=1
pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm"
arch=('x86_64')
url="https://github.com/fribidi/fribidi"
license=('LGPL')
depends=('glibc')
makedepends=('meson')
source=(https://github.com/fribidi/fribidi/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz)
sha256sums=(7fa16c80c81bd622f7b198d31356da139cc318a63fc7761217af4130903f54a2)
build() {
cd ${pkgname}-${pkgver}
meson setup build --prefix=/usr --buildtype=release
meson compile -C build
}
package() {
cd ${pkgname}-${pkgver}
meson install -C build --destdir ${pkgdir}
}