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

DEPS=(glibc)

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

build () {

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