summaryrefslogtreecommitdiff
path: root/repo/system/libunistring.xibuild
blob: ac09168832549aad176211ac3c338099021e57f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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
}

package () {
    make DESTDIR=$PKG_DEST install 
}