#!/bin/sh

MAKEDEPS="python make "
DEPS="libidn"

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

prepare () {
    sed -i 's/env python/&3/' src/psl-make-dafsa 
}

build () {
    ./configure --prefix=/usr --disable-static       &&
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}