opt/libunistring/Pkgfile

20 lines
408 B
Plaintext
Raw Normal View History

2023-08-27 17:34:28 +02:00
# Description: Functions for manipulating Unicode strings and C strings
2018-09-08 17:18:15 +02:00
# URL: https://www.gnu.org/software/libunistring/
2023-08-27 17:34:28 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-09-08 17:18:15 +02:00
name=libunistring
2022-10-20 18:24:27 +02:00
version=1.1
2018-09-08 17:18:15 +02:00
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
2023-08-27 17:34:28 +02:00
cd $name-$version
2018-09-08 17:18:15 +02:00
2023-08-27 17:34:28 +02:00
./configure --prefix=/usr
2018-09-08 17:18:15 +02:00
2023-08-27 17:34:28 +02:00
make
make DESTDIR=$PKG install
2018-09-08 17:18:15 +02:00
2023-08-27 17:34:28 +02:00
rm -r $PKG/usr/share/{doc,info}
2018-09-08 17:18:15 +02:00
}