X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f Date: Sun, 6 Sep 2015 16:42:14 -0400 Message-Id: <201509062042.t86KgE4K013616@envy.delorie.com> From: DJ Delorie To: geda-user AT delorie DOT com In-reply-to: <20150906092714.GG2637@localhost.localdomain> (geda-user AT delorie DOT com) Subject: Re: [geda-user] GTS sources included vs. dependency on the GTS package References: <55E9BF77 DOT 5050402 AT jump-ing DOT de> <201509051920 DOT t85JKu1s019157 AT envy DOT delorie DOT com> <201509060133 DOT t861XsmF002371 AT envy DOT delorie DOT com> <20150906092714 DOT GG2637 AT localhost DOT localdomain> Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > If seriously, DJ, could you pick up my working minipack version at > github.com/vzh/minipack > and resume your nightly builds? Your version is missing the build-all.sh helper that the old one had. It looked like this: NEVERBUILD=" fontconfig " NOBUILD=" " BUILD=" libiconv gettext jpeg zlib libpng tiff expat freetype pixman pkgconfig-wrapper glib atk cairo pango gdk-pixbuf gtk+ gtkglext libtool gmp mingw-libgnurx guile gd pcb geda-gaf gerbv " fail() { echo echo "==================" echo "Build failed." echo "==================" exit 1 } succeed() { echo echo "=====================" echo "Build succeeded." echo "=====================" } for D in $BUILD; do ./mpk source $D || fail done for D in $BUILD; do ./mpk build $D || fail done succeed