#!/bin/bash

DEPS=(libidn)

SOURCE=https://github.com/rockdaboot/libpsl/releases/download/0.21.1/libpsl-0.21.1.tar.gz
DESC="C library to handle the Public Suffix List"

build () {
    sed -i 's/env python/&3/' src/psl-make-dafsa &&
    ./configure --prefix=/usr --disable-static       &&
    make
    make DESTDIR=$PKG_DEST install
}