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

DEPS=(glibc)

PKG_VER=1.16
SOURCE=https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$PKG_VER.tar.gz

DESC="GNU charset conversion library"

build () {
    ./configure --prefix=/usr --disable-static &&
    make
    make prefix=/usr lib=lib DESTDIR=$PKG_DEST install
}