summaryrefslogtreecommitdiff
path: root/repo/system/libunistring.xibuild
blob: b236e0f68d52283b3358fd0ff87d242586c9d02f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

DEPS=(glibc)

PKG_VER=0.9.10
SOURCE=https://ftp.gnu.org/gnu/libunistring/libunistring-$PKG_VER.tar.gz
DESC="Library for manipulating Unicode strings and C strings"

build () {

    ./configure \
            --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install 
}