summaryrefslogtreecommitdiff
path: root/repo/system/libtasn1.xibuild
blob: 2f6fccda072576058f11d61ddc80fdf20e666053 (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/libtasn1/libtasn1-4.18.0.tar.gz
DESC="The ASN.1 library used in GNUTLS"

build () {

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