Makefile - randomcrap - random crap programs of varying quality
 (HTM) git clone git://git.codemadness.org/randomcrap
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       Makefile (616B)
       ---
            1 # $OpenBSD: Makefile,v 1.35 2017/11/19 15:05:16 naddy Exp $
            2 
            3 COMMENT =        Twitter HTML scraper to TAB-separated format
            4 DISTNAME =        tscrape-0.5
            5 CATEGORIES =        www
            6 HOMEPAGE =        https://codemadness.org/
            7 
            8 MAINTAINER=        Hiltjo Posthuma <hiltjo@codemadness.org>
            9 
           10 # ISC
           11 PERMIT_PACKAGE =  Yes
           12 
           13 MASTER_SITES =        ${HOMEPAGE}releases/tscrape/
           14 
           15 # uses pledge()
           16 WANTLIB +=        c
           17 
           18 MAKE_FLAGS =        CC='${CC}' \
           19                 CFLAGS='${CFLAGS}' \
           20                 LDFLAGS='${LDFLAGS}' \
           21                 COMPATOBJ=''
           22 
           23 # optional dependencies for tscrape_update script:
           24 # curl: users can replace curl with base ftp in their config.
           25 RUN_DEPENDS = net/curl
           26 
           27 NO_TEST =        yes
           28 
           29 .include <bsd.port.mk>