From 9dd1cb0d3839f124a34b3f43098451dd05d9022a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Tue, 11 May 2021 02:48:38 -0300 Subject: [PATCH] ucpp: fix description, xlint. Was going to just fix a typo, ended up rephrasing and fixing xlints, including wrong license field. --- srcpkgs/ucpp/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/ucpp/template b/srcpkgs/ucpp/template index 247c933ffac..7511fbc1678 100644 --- a/srcpkgs/ucpp/template +++ b/srcpkgs/ucpp/template @@ -1,19 +1,19 @@ # Template file for 'ucpp' pkgname=ucpp version=1.3.2 -revision=1 +revision=2 wrksrc=${pkgname} build_style=gnu-makefile -nopie=yes -short_desc="Embeddable, quck, light C preprocessor compliant to C99" +short_desc="Embeddable, quick and light C99 compliant C preprocessor" maintainer="Orphaned " -license="BSD" +license="BSD-3-Clause" homepage="https://code.google.com/archive/p/ucpp/" distfiles="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ucpp/ucpp-${version}.tar.bz2" checksum=ab7ecc5ba2c2617fa14cd0a939c1e87ed789c59767fb39fc9b7d0ebf63a81635 +nopie=yes pre_build() { - sed -i Makefile \ + vsed -i Makefile \ -e "s;^CC = .*;CC = ${CC};" \ -e "s;^FLAGS = .*;FLAGS = ${CFLAGS};" \ -e "s;^#LDFLAGS = -pg;LDFLAGS = ${LDFLAGS};"