dev #2

Merged
wyj merged 232 commits from dev into main 2026-01-13 22:39:32 -05:00
Showing only changes of commit 80329eadaa - Show all commits
+31
View File
@@ -0,0 +1,31 @@
pkgname="libunistring"
pkgver="1.3"
pkgdesc='Library for manipulating Unicode strings and C strings'
homepage='https://www.gnu.org/software/libunistring/'
arch=(x86_64)
license=(
GPL-2.0-or-later
LGPL-3.0-or-later
)
sources=("${pkgname}-${pkgver}.tar.xz")
urls=("https://ftp.gnu.org/gnu/${pkgname}/${sources[0]}")
md5sums=("57dfd9e4eba93913a564aa14eab8052e")
src_prepare() {
tar -xf ${distdir}/${sources[0]} --strip-components=1
}
src_build() {
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/libunistring-${pkgver} &&
make
}
src_check() {
make check
}
src_install() {
make DESTDIR="${pkgdir}" install
}