summaryrefslogtreecommitdiff
path: root/repo/system/libunistring.xibuild
blob: 3629ab5b433da6c9f3c33e511b085ccaa178bba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

MAKEDEPS="make "
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 
}