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

DEPS=(glibc)

PKG_VER=4.18.0
SOURCE=https://ftp.gnu.org/gnu/libtasn1/libtasn1-$PKG_VER.tar.gz
DESC="The ASN.1 library used in GNUTLS"

build () {

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