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

DEPS=(acl sh glib2)

PKG_VER=0.21
SOURCE=https://ftp.gnu.org/pub/gnu/gettext/gettext-$PKG_VER.tar.gz
DESC="GNU internationalization library"

build () {
    ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/gettext-$PKG_VER
    make
    make check
}

package () {
    make DESTDIR=$PKG_DEST install 
    chmod -v 0755 $PKG_DEST/usr/lib/preloadable_libintl.so
}