20 lines
408 B
Plaintext
20 lines
408 B
Plaintext
# Description: Functions for manipulating Unicode strings and C strings
|
|
# URL: https://www.gnu.org/software/libunistring/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=libunistring
|
|
version=1.1
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{doc,info}
|
|
}
|