From 4b6650b776d157cd6f9a3e2bcf12491e2dddeb61 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 13 Jun 2015 10:11:33 +0200 Subject: [PATCH] libCello: unbreak build (#1779) --- srcpkgs/libCello/template | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libCello/template b/srcpkgs/libCello/template index 83e86c05491..8cf9b561e4b 100644 --- a/srcpkgs/libCello/template +++ b/srcpkgs/libCello/template @@ -1,11 +1,18 @@ # Template file for 'libcello' pkgname=libCello version=1.1.7 -revision=1 -build_style=gnu-makefile +revision=2 short_desc="Higher level programming in C" maintainer="Juan RP " homepage="http://www.libcello.org/" license="BSD" distfiles="http://$pkgname.org/static/$pkgname-$version.tar.gz" checksum=2273fe8257109c2dd19054beecd83ddcc780ec565a1ad02721e24efa74082908 + +do_build() { + sed -i 's,CFLAGS =,CFLAGS +=,' Makefile + make CC=$CC ${makejobs} +} +do_install() { + make PREFIX=${DESTDIR}/usr install +}