blob: 2b78b508f400ca650e64708cfd4229f537175f7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Manipulate unicode and C strings according to the Unicode Standard.
# URL: http//www.gnu.org/software/libunistring
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on:
name=libunistring
version=1.3
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
rm -rf $PKG/usr/info
}
|